mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
16 lines
366 B
C#
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; }
|
|
}
|
|
} |