mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
20 lines
331 B
Dart
20 lines
331 B
Dart
import 'device_type.dart';
|
|||
|
|
|
||
|
|
class Event {
|
||
|
|
int id;
|
||
|
|
String title;
|
||
|
|
String description;
|
||
|
|
bool isRead;
|
||
|
|
DeviceType deviceType;
|
||
|
|
DateTime dateTime;
|
||
|
|
|
||
|
|
Event({
|
||
|
|
required this.id,
|
||
|
|
required this.title,
|
||
|
|
required this.description,
|
||
|
|
required this.deviceType,
|
||
|
|
required this.dateTime,
|
||
|
|
this.isRead = false,
|
||
|
|
});
|
||
|
|
}
|