mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-06 02:52:41 +01:00
342406784a
Fixed GetEpisodeModels that would fail due to a null AirDate.
19 lines
562 B
C#
19 lines
562 B
C#
using System;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class EpisodeModel
|
|
{
|
|
public string Title { get; set; }
|
|
public int EpisodeId { get; set; }
|
|
public int EpisodeFileId { get; set; }
|
|
public int EpisodeNumber { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public string Overview { get; set; }
|
|
public string Path { get; set; }
|
|
public String Status { get; set; }
|
|
public string AirDate { get; set; }
|
|
public String Quality { get; set; }
|
|
}
|
|
} |