2011-04-10 02:44:01 +00:00
|
|
|
|
namespace NzbDrone.Web.Models
|
2011-03-09 07:40:48 +00:00
|
|
|
|
{
|
|
|
|
|
public class AddExistingSeriesModel
|
|
|
|
|
{
|
|
|
|
|
public bool IsWanted { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
2011-03-17 07:40:23 +00:00
|
|
|
|
public string PathEncoded { get; set; }
|
2011-03-10 07:49:59 +00:00
|
|
|
|
public int TvDbId { get; set; }
|
|
|
|
|
public string TvDbName { get; set; }
|
2011-03-09 07:40:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|