1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/Tv/Season.cs
2013-02-19 18:05:15 -08:00

16 lines
366 B
C#

using System.Linq;
using System;
using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
public class Season : ModelBase
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public Boolean Ignored { get; set; }
public List<Episode> Episodes { get; set; }
}
}