manager-service/ManagerService/DTOs/SubscriptionPlanDTO.cs

14 lines
411 B
C#

namespace ManagerService.DTOs
{
public class SubscriptionPlanDTO
{
public string? id { get; set; }
public string name { get; set; }
public long storageQuotaBytes { get; set; }
public long aiTokensPerMonth { get; set; }
public bool hasStats { get; set; }
public int statsHistoryDays { get; set; }
public bool hasAdvancedStats { get; set; }
}
}