mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02:00
25 lines
762 B
C#
25 lines
762 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.CustomFormats;
|
|
using NzbDrone.Core.Download.Clients;
|
|
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
{
|
|
public class RemoteMovie
|
|
{
|
|
public ReleaseInfo Release { get; set; }
|
|
public ParsedMovieInfo ParsedMovieInfo { get; set; }
|
|
public List<CustomFormat> CustomFormats { get; set; }
|
|
public int CustomFormatScore { 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;
|
|
}
|
|
}
|
|
}
|