mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
23aace6149
# Conflicts: # src/NzbDrone.Api/Series/MovieResource.cs
32 lines
948 B
C#
32 lines
948 B
C#
using System.Linq;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
{
|
|
public class ParsedMovieInfo
|
|
{
|
|
public string MovieTitle { get; set; }
|
|
public SeriesTitleInfo MovieTitleInfo { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
//public int SeasonNumber { get; set; }
|
|
public Language Language { get; set; }
|
|
//public bool FullSeason { get; set; }
|
|
//public bool Special { get; set; }
|
|
public string ReleaseGroup { get; set; }
|
|
public string ReleaseHash { get; set; }
|
|
public string Edition { get; set;}
|
|
public int Year { get; set; }
|
|
public string ImdbId { get; set; }
|
|
|
|
public ParsedMovieInfo()
|
|
{
|
|
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} - {1} {2}", MovieTitle, MovieTitleInfo.Year, Quality);
|
|
}
|
|
}
|
|
} |