OpenMediacenterMobileFlutter/lib/types/video.dart
lukas-heiligenbrunner 5fc77b4abb linux build
cache previews in sqlite db
actor page
outsouce different players in seperate classes
2022-08-28 22:51:12 +02:00

13 lines
265 B
Dart

class VideoT {
int id;
String title;
double ratio;
VideoT(this.title, this.id, this.ratio);
factory VideoT.fromJson(dynamic json) {
return VideoT(json['MovieName'] as String, json['MovieId'] as int,
(json['Ratio'] as num).toDouble());
}
}