1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 02:09:59 +00: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
No EOL
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; }
}
}