mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
14 lines
307 B
Dart
14 lines
307 B
Dart
class Label {
|
|
String? path;
|
|
String? text;
|
|
String? labelTheme;
|
|
|
|
Label({this.path, this.text, this.labelTheme});
|
|
|
|
factory Label.fromJson(Map<String, dynamic> json) => Label(
|
|
path: json['path'] as String?,
|
|
text: json['text'] as String?,
|
|
labelTheme: json['label_theme'] as String?,
|
|
);
|
|
}
|