14 lines
412 B
C#
14 lines
412 B
C#
namespace ManagerService.DTOs
|
|
{
|
|
public class SubscriptionPlanDTO
|
|
{
|
|
public string? id { get; set; }
|
|
public string name { get; set; }
|
|
public long storageQuotaBytes { get; set; }
|
|
public int aiRequestsPerMonth { get; set; }
|
|
public bool hasStats { get; set; }
|
|
public int statsHistoryDays { get; set; }
|
|
public bool hasAdvancedStats { get; set; }
|
|
}
|
|
}
|