blob: c69c759ac493f650745bdad6ced786c2efd3d56d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
namespace MediaBrowser.Model.Entities
{
public class ImageDownloadOptions
{
/// <summary>
/// Download Art Image
/// </summary>
public bool Art { get; set; }
/// <summary>
/// Download Logo Image
/// </summary>
public bool Logo { get; set; }
/// <summary>
/// Download Primary Image
/// </summary>
public bool Primary { get; set; }
/// <summary>
/// Download Backdrop Images
/// </summary>
public bool Backdrops { get; set; }
/// <summary>
/// Download Disc Image
/// </summary>
public bool Disc { get; set; }
/// <summary>
/// Download Thumb Image
/// </summary>
public bool Thumb { get; set; }
/// <summary>
/// Download Banner Image
/// </summary>
public bool Banner { get; set; }
}
}
|