mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
19 lines
351 B
C#
19 lines
351 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.MediaCover
|
|
{
|
|
|
|
public enum MediaCoverTypes
|
|
{
|
|
Unknown = 0,
|
|
Poster = 1,
|
|
Banner = 2,
|
|
Fanart = 3
|
|
}
|
|
|
|
public class MediaCover : IEmbeddedDocument
|
|
{
|
|
public MediaCoverTypes CoverType { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
} |