19 lines
380 B
Dart
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,
|
|
});
|
|
} |