1
0
mirror of https://github.com/stonega/tsacdop synced 2025-01-19 10:21:21 +01:00
tsacdop-podcast-app-android/lib/class/episodebrief.dart
2020-02-09 20:29:09 +08:00

28 lines
586 B
Dart

class EpisodeBrief {
final String title;
String description;
final String pubDate;
final int enclosureLength;
final String enclosureUrl;
final String feedTitle;
final String imageUrl;
final String primaryColor;
final int liked;
final String downloaded;
final int duration;
final int explicit;
EpisodeBrief(
this.title,
this.enclosureUrl,
this.enclosureLength,
this.pubDate,
this.feedTitle,
this.imageUrl,
this.primaryColor,
this.liked,
this.downloaded,
this.duration,
this.explicit
);
}