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.
19 lines
351 B
19 lines
351 B
12 years ago
|
using NzbDrone.Core.Datastore;
|
||
12 years ago
|
|
||
|
namespace NzbDrone.Core.MediaCover
|
||
|
{
|
||
|
|
||
|
public enum MediaCoverTypes
|
||
|
{
|
||
12 years ago
|
Unknown = 0,
|
||
|
Poster = 1,
|
||
|
Banner = 2,
|
||
|
Fanart = 3
|
||
12 years ago
|
}
|
||
|
|
||
12 years ago
|
public class MediaCover : IEmbeddedDocument
|
||
12 years ago
|
{
|
||
|
public MediaCoverTypes CoverType { get; set; }
|
||
|
public string Url { get; set; }
|
||
|
}
|
||
|
}
|