mirror of
https://github.com/stonega/tsacdop
synced 2024-12-15 18:00:10 +01:00
9 lines
189 B
Dart
9 lines
189 B
Dart
|
class SubHistory {
|
||
|
DateTime subDate;
|
||
|
DateTime delDate;
|
||
|
bool status;
|
||
|
String title;
|
||
|
String rssUrl;
|
||
|
SubHistory(this.status, this.delDate, this.subDate, this.rssUrl, this.title);
|
||
|
}
|