manager-service/ManagerService/DTOs/InstanceQuotaDTO.cs
2026-04-01 17:00:13 +02:00

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; }
}
}