Add methods to interface and add model class

This commit is contained in:
Kenton Royal 2018-08-21 22:54:08 +01:00
commit 861e677151
6 changed files with 44 additions and 2 deletions

View file

@ -0,0 +1,11 @@
namespace Ombi.Core.Models
{
public class RequestQuotaCountModel
{
public bool HasLimit { get; set; }
public int Limit { get; set; }
public int Remaining { get; set; }
}
}