Combined AddNew and AddExisting Series pages.

Fixed AddNew Series
This commit is contained in:
Mark McDowall 2011-05-28 00:16:16 -07:00
commit 463881843e
9 changed files with 193 additions and 209 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace NzbDrone.Web.Models
{
public class RootDirModel
{
public string Path { get; set; }
public string CleanPath { get; set; }
}
}