mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-18 12:34:11 +02:00
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; }
|
|
}
|
|
} |