login-page/lib/models/notification_model.dart
2025-05-17 11:13:16 +03:00

19 lines
380 B
Dart

import 'package:flutter/material.dart';
class NotificationModel {
final String id;
final String title;
final String message;
final DateTime timestamp;
final IconData icon;
bool isRead;
NotificationModel({
required this.id,
required this.title,
required this.message,
required this.timestamp,
required this.icon,
this.isRead = false,
});
}