banxiang/lib/models/activity.dart
2026-02-17 16:10:18 +08:00

24 lines
473 B
Dart

class Activity {
String id;
String title;
String category;
DateTime time;
String location;
int maxParticipants;
int currentParticipants;
String creatorName;
String description;
Activity({
required this.id,
required this.title,
required this.category,
required this.time,
required this.location,
required this.maxParticipants,
this.currentParticipants = 0,
required this.creatorName,
this.description = '',
});
}