1
0
mirror of https://github.com/stonega/tsacdop synced 2025-02-09 08:08:46 +01:00

9 lines
189 B
Dart
Raw Normal View History

class SubHistory {
DateTime subDate;
DateTime delDate;
bool status;
String title;
String rssUrl;
SubHistory(this.status, this.delDate, this.subDate, this.rssUrl, this.title);
}