11 lines
271 B
C#
11 lines
271 B
C#
namespace Wino.Mail.Api.Contracts.Common;
|
|
|
|
public sealed record QuotaInfoDto(
|
|
bool HasAiPack,
|
|
string EntitlementStatus,
|
|
DateTimeOffset? CurrentPeriodStartUtc,
|
|
DateTimeOffset? CurrentPeriodEndUtc,
|
|
int? MonthlyLimit,
|
|
int? Used,
|
|
int? Remaining);
|