11 lines
281 B
C#
11 lines
281 B
C#
namespace ManagerService.DTOs
|
|
{
|
|
public class InstanceQuotaDTO
|
|
{
|
|
public long storageUsedBytes { get; set; }
|
|
public long storageQuotaBytes { get; set; }
|
|
public long aiTokensUsed { get; set; }
|
|
public long aiTokensPerMonth { get; set; }
|
|
}
|
|
}
|