2011-03-17 09:40:23 +02:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-03-28 23:22:12 +03:00
|
|
|
using System.ComponentModel;
|
2011-03-17 09:40:23 +02:00
|
|
|
using System.Linq;
|
|
|
|
using System.Web;
|
2011-03-28 23:22:12 +03:00
|
|
|
using System.Web.Mvc;
|
2011-03-17 09:40:23 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
{
|
|
|
|
public class AddExistingManualModel
|
|
|
|
{
|
|
|
|
public string Path { get; set; }
|
|
|
|
public string FolderName { get; set; }
|
2011-03-28 23:22:12 +03:00
|
|
|
|
|
|
|
[DisplayName("Quality Profile")]
|
|
|
|
public int QualityProfileId { get; set; }
|
|
|
|
|
|
|
|
public SelectList QualitySelectList { get; set; }
|
2011-03-17 09:40:23 +02:00
|
|
|
}
|
|
|
|
}
|