mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 09:06:36 +08:00
12 lines
269 B
Dart
12 lines
269 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?,
|
|
);
|
|
}
|