Initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
class DetailImageModel {
|
||||
final String? backdropUrl;
|
||||
final List<String> fallbackUrls;
|
||||
final String embyBaseUrl;
|
||||
final Map<String, String>? imageHeaders;
|
||||
|
||||
const DetailImageModel({
|
||||
this.backdropUrl,
|
||||
this.fallbackUrls = const <String>[],
|
||||
this.embyBaseUrl = '',
|
||||
this.imageHeaders,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user