1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-06 11:50:56 +02:00

19 lines
351 B
C#
Raw Normal View History

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