jellyfin/MediaBrowser.Model/Entities/ImageDownloadOptions.cs

66 lines
1.9 KiB
C#
Raw Normal View History

2013-04-18 21:57:28 +02:00

2013-03-04 17:11:50 +01:00
namespace MediaBrowser.Model.Entities
{
2013-04-20 18:29:50 +02:00
/// <summary>
/// Class ImageDownloadOptions
/// </summary>
2013-03-04 17:11:50 +01:00
public class ImageDownloadOptions
{
/// <summary>
/// Download Art Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if art; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Art { get; set; }
/// <summary>
/// Download Logo Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if logo; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Logo { get; set; }
/// <summary>
/// Download Primary Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if primary; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Primary { get; set; }
/// <summary>
/// Download Backdrop Images
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if backdrops; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Backdrops { get; set; }
/// <summary>
/// Download Disc Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if disc; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Disc { get; set; }
/// <summary>
/// Download Thumb Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if thumb; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Thumb { get; set; }
/// <summary>
/// Download Banner Image
/// </summary>
2013-04-20 18:29:50 +02:00
/// <value><c>true</c> if banner; otherwise, <c>false</c>.</value>
2013-03-04 17:11:50 +01:00
public bool Banner { get; set; }
2013-04-20 18:29:50 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="ImageDownloadOptions"/> class.
/// </summary>
public ImageDownloadOptions()
{
Art = true;
Logo = true;
Primary = true;
Backdrops = true;
Disc = true;
Thumb = true;
Banner = true;
}
2013-03-04 17:11:50 +01:00
}
}