1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-06 19:12:38 +01:00
Radarr/NzbDrone.Web/Models/SeriesSearchResultModel.cs

11 lines
231 B
C#
Raw Normal View History

using System;
namespace NzbDrone.Web.Models
{
public class SeriesSearchResultModel
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime FirstAired { get; set; }
}
}