11 lines
283 B
C#
11 lines
283 B
C#
namespace ManagerService.DTOs
|
|
{
|
|
public class InstanceQuotaDTO
|
|
{
|
|
public long storageUsedBytes { get; set; }
|
|
public long storageQuotaBytes { get; set; }
|
|
public int aiRequestsUsed { get; set; }
|
|
public int aiRequestsPerMonth { get; set; }
|
|
}
|
|
}
|