mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
16 lines
379 B
C#
16 lines
379 B
C#
using System.ComponentModel;
|
|
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; }
|
|
}
|
|
} |