mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
17 lines
No EOL
491 B
C#
17 lines
No EOL
491 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Api.Missing
|
|
{
|
|
public class MissingResource
|
|
{
|
|
public Int32 SeriesId { get; set; }
|
|
public String SeriesTitle { get; set; }
|
|
public Int32 EpisodeId { get; set; }
|
|
public String EpisodeTitle { get; set; }
|
|
public Int32 SeasonNumber { get; set; }
|
|
public Int32 EpisodeNumber { get; set; }
|
|
public DateTime? AirDate { get; set; }
|
|
public String Overview { get; set; }
|
|
}
|
|
} |