mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
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).
12 lines
182 B
C#
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; }
|
|
}
|
|
}
|
|
|