You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Download.Pending
|
|
|
|
|
{
|
|
|
|
|
public class PendingRelease : ModelBase
|
|
|
|
|
{
|
|
|
|
|
public int ArtistId { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public DateTime Added { get; set; }
|
|
|
|
|
public ParsedAlbumInfo ParsedAlbumInfo { get; set; }
|
|
|
|
|
public ReleaseInfo Release { get; set; }
|
|
|
|
|
|
|
|
|
|
//Not persisted
|
|
|
|
|
public RemoteEpisode RemoteEpisode { get; set; }
|
|
|
|
|
public RemoteAlbum RemoteAlbum { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|