mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
11 lines
238 B
C#
11 lines
238 B
C#
using System;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class SeriesSearchResultModel
|
|
{
|
|
public int TvDbId { get; set; }
|
|
public string TvDbName { get; set; }
|
|
public DateTime FirstAired { get; set; }
|
|
}
|
|
} |