2011-07-27 22:59:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Web.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class ExistingSeriesModel
|
|
|
|
|
{
|
|
|
|
|
public SelectList Quality { get; set; }
|
|
|
|
|
|
2011-09-09 03:52:25 +00:00
|
|
|
|
public List<Tuple<string, string, int>> ExistingSeries { get; set; }
|
2011-07-27 22:59:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|