mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
16 lines
421 B
C#
16 lines
421 B
C#
namespace NzbDrone.Core.Model
|
|
{
|
|
public class SeasonParseResult
|
|
{
|
|
internal string SeriesTitle { get; set; }
|
|
internal int SeasonNumber { get; set; }
|
|
internal int Year { get; set; }
|
|
|
|
public QualityModel Quality { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("Series:{0} Season:{1}", SeriesTitle, SeasonNumber);
|
|
}
|
|
}
|
|
} |