mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
13 lines
272 B
C#
13 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; }
|
|
}
|
|
}
|