mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
e62cb3b5da
Add [PROPER] to titleFix if it's a proper. User can now change the QualityProfile when adding a series (new or existing), option will default to their DefaultQualityProfile.
20 lines
464 B
C#
20 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class AddExistingManualModel
|
|
{
|
|
public string Path { get; set; }
|
|
public string FolderName { get; set; }
|
|
|
|
[DisplayName("Quality Profile")]
|
|
public int QualityProfileId { get; set; }
|
|
|
|
public SelectList QualitySelectList { get; set; }
|
|
}
|
|
} |