Added toastr, fullcalendar, start of API for Calendar.

Sending headers for DownloadString and DownloadFile in addition to DownloadStream.
This commit is contained in:
Mark McDowall 2013-02-23 09:42:15 -08:00
commit 6296e425d3
15 changed files with 5624 additions and 82 deletions

View file

@ -0,0 +1,20 @@
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? AirTime { get; set; }
public Int32 Status { get; set; }
public String Overview { get; set; }
}
}