Files
Readarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs
T
kay.one 9669869c9b Fixed: Fixed styling for add series dropdown
Fixed: Adding a series is now blocked unless a valid root folder is provided
2012-02-26 19:25:57 -08:00

11 lines
228 B
C#

using System.Linq;
namespace NzbDrone.Web.Models
{
public class TvDbSearchResultModel
{
public int Id { get; set; }
public string Title { get; set; }
public string Banner { get; set; }
}
}