tsacdop-podcast-app-android/lib/class/episodebrief.dart

28 lines
586 B
Dart
Raw Normal View History

2020-02-09 13:29:09 +01:00
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
);
}