mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-29 19:18:30 -07:00
15 lines
No EOL
275 B
C#
15 lines
No EOL
275 B
C#
using System;
|
|
|
|
namespace Ombi.Core.Models
|
|
{
|
|
public class RequestQuotaCountModel
|
|
{
|
|
public bool HasLimit { get; set; }
|
|
|
|
public int Limit { get; set; }
|
|
|
|
public int Remaining { get; set; }
|
|
|
|
public DateTime NextRequest { get; set; }
|
|
}
|
|
} |