mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
12 lines
272 B
C#
12 lines
272 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
|
|
namespace NzbDrone.Api.Seasons
|
|
{
|
|
public class SeasonResource : RestResource
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public Boolean Monitored { get; set; }
|
|
}
|
|
}
|