1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 08:51:43 +02:00
Radarr/NzbDrone.Web/Models/AddExistingManualModel.cs
2011-04-09 19:44:01 -07:00

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