mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 11:02:40 +01:00
745d9d9355
Should be easy to add others (would want to have it close other open ones, I think).
11 lines
231 B
C#
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; }
|
|
}
|
|
} |