1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs

13 lines
319 B
C#
Raw Normal View History

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; }
public string DisplayedTitle { get; set; }
public string Url { get; set; }
}
}