feat: add notification model

This commit is contained in:
2025-12-20 18:22:43 -03:00
parent 08e07ab3d0
commit 70ff68930d

View File

@@ -0,0 +1,3 @@
export class Notification {
constructor(public message = '', public type: 'success' | 'error' = 'success') {}
}