mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 07:45:52 +01:00
11 lines
No EOL
238 B
C#
11 lines
No EOL
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; }
|
|
}
|
|
} |