mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-16 21:16:24 -04:00
11 lines
228 B
C#
11 lines
228 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
{
|
|
public class Season : IEmbeddedDocument
|
|
{
|
|
public int SeasonNumber { get; set; }
|
|
public Boolean Monitored { get; set; }
|
|
}
|
|
} |