1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs
Mark McDowall d330c65165 AutoComplete is now using jQuery UI AutoComplete.
Removed jquery.liveQuery.
2011-09-08 20:26:48 -07:00

14 lines
298 B
C#

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