mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
fc641baab3
added support for embedded documents.
20 lines
No EOL
383 B
C#
20 lines
No EOL
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; }
|
|
}
|
|
} |