Better profile caching.

This commit is contained in:
Burak Kaan Köse
2026-03-20 00:15:10 +01:00
parent d38317f0be
commit 4a20ea2577
10 changed files with 422 additions and 74 deletions
@@ -0,0 +1,12 @@
using System;
namespace Wino.Core.Domain.Models.Accounts;
public sealed record WinoAccountAddOnSnapshot(
bool HasAiPack,
int? UsageCount = null,
int? UsageLimit = null,
DateTimeOffset? BillingPeriodStartUtc = null,
DateTimeOffset? BillingPeriodEndUtc = null,
bool HasUnlimitedAccounts = false,
DateTimeOffset? LastUpdatedUtc = null);