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.
16 lines
416 B
16 lines
416 B
namespace NzbDrone.Core.Model
|
|
{
|
|
public class SeasonParseResult
|
|
{
|
|
internal string SeriesTitle { get; set; }
|
|
internal int SeasonNumber { get; set; }
|
|
internal int Year { get; set; }
|
|
|
|
public Quality Quality { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("Series:{0} Season:{1}", SeriesTitle, SeasonNumber);
|
|
}
|
|
}
|
|
} |