You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/lib/pangea/course_plans/course_plan_event.dart

18 lines
308 B
Dart

class CoursePlanEvent {
final String uuid;
CoursePlanEvent({required this.uuid});
Map<String, dynamic> toJson() {
return {
'uuid': uuid,
};
}
factory CoursePlanEvent.fromJson(Map<String, dynamic> json) {
return CoursePlanEvent(
uuid: json['uuid'] as String,
);
}
}