1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 09:37:12 +00:00
Lidarr/NzbDrone.Web/Models/ExistingSeriesModel.cs

13 lines
No EOL
282 B
C#

using System;
using System.Collections.Generic;
using System.Web.Mvc;
namespace NzbDrone.Web.Models
{
public class ExistingSeriesModel
{
public SelectList Quality { get; set; }
public List<Tuple<string, string, int>> ExistingSeries { get; set; }
}
}