mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 02:26:52 +08:00
12 lines
270 B
Dart
12 lines
270 B
Dart
class PartOutline {
|
|
int? timestamp;
|
|
String? content;
|
|
|
|
PartOutline({this.timestamp, this.content});
|
|
|
|
factory PartOutline.fromJson(Map<String, dynamic> json) => PartOutline(
|
|
timestamp: json['timestamp'] as int?,
|
|
content: json['content'] as String?,
|
|
);
|
|
}
|