2011-03-07 07:48:47 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-03-07 08:25:38 +00:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2011-03-07 07:48:47 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class AddSeriesModel
|
|
|
|
|
{
|
2011-03-07 08:25:38 +00:00
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("Single Series Path")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-03-07 07:48:47 +00:00
|
|
|
|
public string SingleSeries { get; set; }
|
2011-03-07 08:25:38 +00:00
|
|
|
|
|
|
|
|
|
[DataType(DataType.Text)]
|
|
|
|
|
[DisplayName("Series Root Path")]
|
|
|
|
|
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
2011-03-07 07:48:47 +00:00
|
|
|
|
public string SeriesRoot { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|