You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
590 B
31 lines
590 B
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.MediaCover
|
|
{
|
|
|
|
public enum MediaCoverTypes
|
|
{
|
|
Unknown = 0,
|
|
Poster = 1,
|
|
Banner = 2,
|
|
Fanart = 3,
|
|
Screenshot = 4,
|
|
Headshot = 5
|
|
}
|
|
|
|
public class MediaCover : IEmbeddedDocument
|
|
{
|
|
public MediaCoverTypes CoverType { get; set; }
|
|
public string Url { get; set; }
|
|
|
|
public MediaCover()
|
|
{
|
|
}
|
|
|
|
public MediaCover(MediaCoverTypes coverType, string url)
|
|
{
|
|
CoverType = coverType;
|
|
Url = url;
|
|
}
|
|
}
|
|
} |