mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
9caacc4809
Editor should support about 40 seasons without scrolling (TvDb doesn't list all seasons for large series) Removed &pp=3 from SabProvider (it will use SAB's configured Post Processing value).
15 lines
348 B
C#
15 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SeasonEditModel
|
|
{
|
|
public int SeasonId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public string SeasonString { get; set; }
|
|
public bool Monitored { get; set; }
|
|
}
|
|
} |