1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/MediaCover/MediaCover.cs

19 lines
351 B
C#
Raw Normal View History

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.MediaCover
{
public enum MediaCoverTypes
{
2013-04-01 00:45:16 +03:00
Unknown = 0,
Poster = 1,
Banner = 2,
Fanart = 3
}
2013-03-31 23:25:39 +03:00
public class MediaCover : IEmbeddedDocument
{
public MediaCoverTypes CoverType { get; set; }
public string Url { get; set; }
}
}