1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-02 13:14:58 +00:00
Sonarr/NzbDrone.Core/Tv/Season.cs

11 lines
228 B
C#
Raw Normal View History

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