mirror of https://github.com/Radarr/Radarr
22 lines
628 B
C#
22 lines
628 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Api.Calendar
|
|
{
|
|
public class CalendarResource
|
|
{
|
|
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 Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
public Int32 Status { get; set; }
|
|
public String Overview { get; set; }
|
|
}
|
|
}
|