mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 12:10:33 +08:00
14 lines
276 B
Dart
14 lines
276 B
Dart
class EntranceButton {
|
|
String? uri;
|
|
String? title;
|
|
|
|
EntranceButton({this.uri, this.title});
|
|
|
|
factory EntranceButton.fromJson(Map<String, dynamic> json) {
|
|
return EntranceButton(
|
|
uri: json['uri'] as String?,
|
|
title: json['title'] as String?,
|
|
);
|
|
}
|
|
}
|