1
0
mirror of https://github.com/stonega/tsacdop synced 2025-01-05 19:47:56 +01:00
tsacdop-podcast-app-android/lib/class/podcastlocal.dart
stonegate 57bf41114b Export ompli file
Storage management
Syncing setting
2020-03-20 03:58:30 +08:00

31 lines
568 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;
final int upateCount;
PodcastLocal(
this.title,
this.imageUrl,
this.rssUrl,
this.primaryColor,
this.author,
this.id,
this.imagePath,
this.provider,
this.link,
{
this.description ='',
this.upateCount = 0,
}
);
}