mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
18 lines
449 B
C#
18 lines
449 B
C#
|
using NzbDrone.Core.Repository.Quality;
|
||
|
using SubSonic.SqlGeneration.Schema;
|
||
|
|
||
|
namespace NzbDrone.Core.Model
|
||
|
{
|
||
|
public class SeasonParseResult
|
||
|
{
|
||
|
internal string SeriesTitle { get; set; }
|
||
|
internal int SeasonNumber { get; set; }
|
||
|
internal int Year { get; set; }
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return string.Format("Series:{0} Season:{1}", SeriesTitle, SeasonNumber);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|