mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Added flutter front-end
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user