11 lines
268 B
C#
11 lines
268 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; }
|
|
}
|
|
}
|