mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02: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; }
|
|
}
|
|
} |