Ombi/PlexRequests.UI/Models/ApiModel.cs
TidusJar 98eadc9cc6 Updated the claims so we can support more users.
Added a user management section (not yet complete)
Added the api to the solution and a api key in the settings (currently only gets the requests).
2016-05-15 21:51:20 -04:00

12 lines
182 B
C#

using System;
namespace PlexRequests.UI
{
public class ApiModel<T>
{
public T Data{ get; set; }
public bool Error{get;set;}
public string ErrorMessage{ get; set; }
}
}