mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
fc641baab3
added support for embedded documents.
20 lines
383 B
C#
20 lines
383 B
C#
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; }
|
|
}
|
|
} |