mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
9 lines
No EOL
215 B
C#
9 lines
No EOL
215 B
C#
namespace Ombi.Core.Models.Requests
|
|
{
|
|
public class RequestCountModel
|
|
{
|
|
public int Pending { get; set; }
|
|
public int Approved { get; set; }
|
|
public int Available { get; set; }
|
|
}
|
|
} |