1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/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
No EOL
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; }
}
}