mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
d330c65165
Removed jquery.liveQuery.
14 lines
No EOL
298 B
C#
14 lines
No EOL
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; }
|
|
}
|
|
} |