mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
12 lines
281 B
Dart
12 lines
281 B
Dart
class MultiImg {
|
|
String? color;
|
|
String? mediumRemind;
|
|
|
|
MultiImg({this.color, this.mediumRemind});
|
|
|
|
factory MultiImg.fromJson(Map<String, dynamic> json) => MultiImg(
|
|
color: json['color'] as String?,
|
|
mediumRemind: json['medium_remind'] as String?,
|
|
);
|
|
}
|