mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 13:41:13 -07:00
10 lines
166 B
C#
10 lines
166 B
C#
namespace Ombi.UI.Models
|
|
{
|
|
public class ApiModel<T>
|
|
{
|
|
public T Data{ get; set; }
|
|
public bool Error{get;set;}
|
|
public string ErrorMessage{ get; set; }
|
|
}
|
|
}
|
|
|