Skip to content
Snippets Groups Projects
data_model.dart 434 B
Newer Older


class Event{
  final int id;
  final String urn;
  final String label;
  final String type;
  final String description;
  final String status;

  Event({
    required this.id,
    required this.urn,
    required this.label,
    required this.type,
    required this.description,
    required this.status
  });
}

class EventType{
  final String name;
  final int id;

  EventType({
    required this.name,
    required this.id
});
}