Add Existing Series works, UI shows TVDB Name and Path so you can check before adding to DB.

This commit is contained in:
markus101 2011-03-09 23:49:59 -08:00
commit 48b89abfeb
14 changed files with 216 additions and 50 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Model
{
public class SeriesMappingModel
{
public string Path { get; set; }
public int TvDbId { get; set; }
}
}