mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
28 lines
507 B
Dart
28 lines
507 B
Dart
class Community {
|
|
final String uuid;
|
|
final String name;
|
|
final String description;
|
|
|
|
Community({
|
|
required this.uuid,
|
|
required this.name,
|
|
required this.description,
|
|
});
|
|
|
|
factory Community.fromJson(Map<String, dynamic> json) {
|
|
return Community(
|
|
uuid: json['uuid'],
|
|
name: json['name'],
|
|
description: json['description'],
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'uuid': uuid,
|
|
'name': name,
|
|
'description': description,
|
|
};
|
|
}
|
|
}
|