1
0
mirror of https://github.com/stonega/tsacdop synced 2024-12-15 18:00:10 +01:00
tsacdop-podcast-app-android/lib/type/podcastlocal.dart
2020-05-07 00:50:32 +08:00

33 lines
612 B
Dart

class PodcastLocal {
final String title;
final String imageUrl;
final String rssUrl;
final String author;
final String primaryColor;
final String id;
final String imagePath;
final String provider;
final String link;
final String description;
int upateCount;
int episodeCount;
PodcastLocal(
this.title,
this.imageUrl,
this.rssUrl,
this.primaryColor,
this.author,
this.id,
this.imagePath,
this.provider,
this.link,
{
this.description ='',
this.upateCount = 0,
this.episodeCount = 0
}
);
}