mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
EpisodeSorting setup, setting page created and usable, needs labels still.
This commit is contained in:
parent
165beda55b
commit
46830a2777
11 changed files with 312 additions and 7 deletions
26
NzbDrone.Web/Models/EpisodeSortingModel.cs
Normal file
26
NzbDrone.Web/Models/EpisodeSortingModel.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using NzbDrone.Core.Model;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class EpisodeSortingModel
|
||||
{
|
||||
public bool ShowName { get; set; }
|
||||
public bool EpisodeName { get; set; }
|
||||
public bool ReplaceSpaces { get; set; }
|
||||
public bool AppendQuality { get; set; }
|
||||
public bool UseAirByDate { get; set; }
|
||||
public bool SeasonFolders { get; set; }
|
||||
public string SeasonFolderFormat { get; set; }
|
||||
public int SeparatorStyle { get; set; }
|
||||
public int NumberStyle { get; set; }
|
||||
public int MultiEpisodeStyle { get; set; }
|
||||
public SelectList SeparatorStyles { get; set; }
|
||||
public SelectList NumberStyles { get; set; }
|
||||
public SelectList MultiEpisodeStyles { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue