Updating SickRage api to verify Season List is up to date

This commit is contained in:
Shannon Barrett 2016-03-28 14:16:55 -05:00
commit 6921e3aa85
7 changed files with 62 additions and 29 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlexRequests.Api.Models.SickRage
{
public class SickRageBase<T>
{
public T data { get; set; }
public string message { get; set; }
public string result { get; set; }
}
}