Add Series, will need to design new and existing flows.

ScanProvider will need to be updated to support adding shows individually as well as SeriesProvider, GEt Unmapped will need to accept a path... move to ScanProvider perhaps.
This commit is contained in:
markus101 2011-03-07 00:25:38 -08:00
parent 24f4f608e5
commit 2e9dd7f1ff
4 changed files with 35 additions and 0 deletions

View file

@ -1,5 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
@ -7,7 +9,14 @@ namespace NzbDrone.Web.Models
{
public class AddSeriesModel
{
[DataType(DataType.Text)]
[DisplayName("Single Series Path")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
public string SingleSeries { get; set; }
[DataType(DataType.Text)]
[DisplayName("Series Root Path")]
[DisplayFormat(ConvertEmptyStringToNull = false)]
public string SeriesRoot { get; set; }
}
}