mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 17:16:29 +08:00
9
lib/models/dynamics/article_opus/attributes.dart
Normal file
9
lib/models/dynamics/article_opus/attributes.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Attributes {
|
||||
String? clazz;
|
||||
|
||||
Attributes({this.clazz});
|
||||
|
||||
factory Attributes.fromJson(Map<String, dynamic> json) => Attributes(
|
||||
clazz: json['class'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user