From 70ff68930d5448a6b1a74910f68acb2d0a2c926d Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sat, 20 Dec 2025 18:22:43 -0300 Subject: [PATCH] feat: add notification model --- src/app/models/Notification.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/app/models/Notification.ts diff --git a/src/app/models/Notification.ts b/src/app/models/Notification.ts new file mode 100644 index 0000000..e56504b --- /dev/null +++ b/src/app/models/Notification.ts @@ -0,0 +1,3 @@ +export class Notification { + constructor(public message = '', public type: 'success' | 'error' = 'success') {} +}