mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 18:30:45 +00:00
18 lines
No EOL
449 B
C#
18 lines
No EOL
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);
|
|
}
|
|
|
|
}
|
|
} |