Files
PiliPlus/lib/models/space/entrance_button.dart
bggRGjQaUbCoE f77088b870 Refactor member page (#3)
* refactor: member page

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
2024-10-17 11:18:59 +08:00

18 lines
377 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'entrance_button.g.dart';
@JsonSerializable()
class EntranceButton {
String? uri;
String? title;
EntranceButton({this.uri, this.title});
factory EntranceButton.fromJson(Map<String, dynamic> json) {
return _$EntranceButtonFromJson(json);
}
Map<String, dynamic> toJson() => _$EntranceButtonToJson(this);
}