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