1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-03-12 23:28:50 +00:00
Sonarr/NzbDrone.Core/MediaCover/MediaCover.cs

20 lines
383 B
C#
Raw Normal View History

using System.Linq;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.MediaCover
{
public enum MediaCoverTypes
{
Poster = 0,
Banner = 1,
Fanart = 2
}
public class MediaCover : ModelBase
{
public MediaCoverTypes CoverType { get; set; }
public string Url { get; set; }
public int SeriesId { get; set; }
}
}