sonarr-repo-only/src/NzbDrone.Api/Series/SeasonResource.cs

14 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Api.Series
{
public class SeasonResource
{
public int SeasonNumber { get; set; }
public Boolean Monitored { get; set; }
}
}