1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 02:52:41 +01:00
Radarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs
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; }
}
}