Add existing series uses existing path now

This commit is contained in:
Mark McDowall 2013-02-17 17:45:14 -08:00
commit 7d4db30e38
11 changed files with 34 additions and 20 deletions

View file

@ -0,0 +1,12 @@
using System.Collections.Generic;
using NzbDrone.Core.Datastore;
using Sqo.Attributes;
namespace NzbDrone.Core.RootFolders
{
public class UnmappedFolder
{
public string Name { get; set; }
public string Path { get; set; }
}
}