1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 18:47:52 +00:00
Lidarr/NzbDrone.Web/Models/TvDbSearchResultModel.cs

14 lines
298 B
C#
Raw Normal View History

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; }
}
}