1
0
mirror of https://github.com/stonega/tsacdop synced 2025-01-31 07:45:02 +01:00
stonegate cb5b17bba1 Change audio plugin to just_audio
Add storage setting
Add history setting
2020-03-14 11:14:24 +08:00

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);
}