1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 17:31:47 +02:00
Radarr/NzbDrone.Web/Models/SeriesSearchResultModel.cs
Mark McDowall 745d9d9355 TopSlider added for local series searching!
Should be easy to add others (would want to have it close other open ones, I think).
2011-10-20 16:36:47 -07:00

11 lines
231 B
C#

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