1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-21 01:49:57 +02:00
Sonarr/NzbDrone.Core/Tv/Season.cs

11 lines
228 B
C#
Raw Normal View History

2013-07-19 06:47:55 +03:00
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
2013-09-10 08:22:38 +03:00
public class Season : IEmbeddedDocument
{
public int SeasonNumber { get; set; }
public Boolean Monitored { get; set; }
}
}