This commit is contained in:
Jamie.Rees 2017-05-25 16:40:10 +01:00
parent 39cac898c6
commit fc3ed1105d
26 changed files with 294 additions and 166 deletions

View file

@ -0,0 +1,9 @@
namespace Ombi.Core.Models.Requests
{
public class RequestCountModel
{
public int Pending { get; set; }
public int Approved { get; set; }
public int Available { get; set; }
}
}