Handling of AI pack through mmicrosoft store.

This commit is contained in:
Burak Kaan Köse
2026-04-02 15:07:05 +02:00
parent 7b369201b0
commit 8f16f553f5
26 changed files with 765 additions and 578 deletions
@@ -1,24 +0,0 @@
using System;
using SQLite;
namespace Wino.Core.Domain.Entities.Shared;
public class WinoAccountAddOnCache
{
[PrimaryKey]
public Guid AccountId { get; set; }
public bool HasAiPack { get; set; }
public int? AiUsageCount { get; set; }
public int? AiUsageLimit { get; set; }
public DateTime? AiBillingPeriodStartUtc { get; set; }
public DateTime? AiBillingPeriodEndUtc { get; set; }
public bool HasUnlimitedAccounts { get; set; }
public DateTime LastUpdatedUtc { get; set; }
}