Skip to content

Make event app compatible

No due date 75% complete

These are the things that the database should implement:

int? id;
String? title;
DateTime? starts_at;
DateTime? ends_at;
String? description;
String? location;
bool? drink;
bool? all_day
bool? food;
bool? cash; //ska inte finnas, kommer läsas från price
bool? closed;
bool? can_signup;
bool? drink_package;
int? price;
List? dress_code;
int? event_user_count;

These are the things that the database should implement:

int? id;
String? title;
DateTime? starts_at;
DateTime? ends_at;
String? description;
String? location;
bool? drink;
bool? all_day
bool? food;
bool? cash; //ska inte finnas, kommer läsas från price
bool? closed;
bool? can_signup;
bool? drink_package;
int? price;
List? dress_code;
int? event_user_count;
List<List>? user_types; //SKA INTE IMPLEMENTERAS PÅ ETT TAG
Contact? contact;
int? max_capacity;
String? dot;
EventSignup? event_signup;
EventUser? event_user;
List? groups;

Loading