Files
PiliPlus/lib/models/space/entrance_button.dart
bggRGjQaUbCoE 1d4eabb770 tweak
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-17 19:01:46 +08:00

18 lines
385 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);
}