mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-01 13:16:06 +01:00
16 lines
No EOL
368 B
C#
16 lines
No EOL
368 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 Monitored { get; set; }
|
|
|
|
public List<Episode> Episodes { get; set; }
|
|
}
|
|
} |