1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 04:52:42 +01:00
Radarr/NzbDrone.Web/Models/EpisodeSortingModel.cs

26 lines
867 B
C#
Raw Normal View History

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; }
}
}