1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-12 11:15:43 +02:00
Sonarr/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; }
}
}