Files
syncrow-app/lib/features/app_layout/model/community_model.dart
2024-10-30 11:04:36 +04:00

28 lines
538 B
Dart

class Community {
final String uuid;
final String name;
final String description;
Community({
required this.uuid,
required this.name,
this.description = '',
});
factory Community.fromJson(Map<String, dynamic> json) {
return Community(
uuid: json['uuid'] ?? '',
name: json['name'] ?? 'Unnamed Community',
description: json['description'] ?? '',
);
}
Map<String, dynamic> toJson() {
return {
'uuid': uuid,
'name': name,
'description': description,
};
}
}