You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/Old/Ombi.Api.Models/SickRage/SickRageBase.cs

9 lines
218 B

8 years ago
namespace Ombi.Api.Models.SickRage
{
9 years ago
public abstract class SickRageBase<T>
{
public T data { get; set; }
public string message { get; set; }
public string result { get; set; }
}
}