Files
Wino-Mail/Wino.Core.Domain/Models/Accounts/WinoAddOnInfo.cs
T
2026-03-19 01:50:14 +01:00

13 lines
318 B
C#

using System;
using Wino.Core.Domain.Enums;
namespace Wino.Core.Domain.Models.Accounts;
public sealed record WinoAddOnInfo(
WinoAddOnProductType ProductType,
bool IsPurchased,
int? UsageCount = null,
int? UsageLimit = null,
double UsagePercentage = 0,
DateTimeOffset? RenewalDateUtc = null);