mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-17 15:46:14 +08:00
10 lines
190 B
Dart
10 lines
190 B
Dart
class Attributes {
|
|
String? clazz;
|
|
|
|
Attributes({this.clazz});
|
|
|
|
factory Attributes.fromJson(Map<String, dynamic> json) => Attributes(
|
|
clazz: json['class'] as String?,
|
|
);
|
|
}
|