mirror of
https://github.com/Readarr/Readarr
synced 2026-01-17 21:13:38 +01:00
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; }
|
|
}
|
|
} |