mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
21 lines
580 B
C#
21 lines
580 B
C#
using NzbDrone.Core.Movies;
|
|
using NzbDrone.Core.Download.Clients;
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
{
|
|
public class RemoteMovie
|
|
{
|
|
public ReleaseInfo Release { get; set; }
|
|
public ParsedMovieInfo ParsedMovieInfo { get; set; }
|
|
public Movie Movie { get; set; }
|
|
public MappingResultType MappingResult { get; set; }
|
|
public bool DownloadAllowed { get; set; }
|
|
public TorrentSeedConfiguration SeedConfiguration { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Release.Title;
|
|
}
|
|
}
|
|
}
|