mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
9 lines
No EOL
218 B
C#
9 lines
No EOL
218 B
C#
namespace Ombi.Api.Models.SickRage
|
|
{
|
|
public abstract class SickRageBase<T>
|
|
{
|
|
public T data { get; set; }
|
|
public string message { get; set; }
|
|
public string result { get; set; }
|
|
}
|
|
} |