using Microsoft.EntityFrameworkCore; namespace SVSim.Database.Models; /// /// Per-pack gacha-point exchange config. Owned by ; null when the /// pack does not participate in gacha-point exchange. Wire shape (from /pack/info): /// {"pack_id":"10001","gacha_point":0,"increase_gacha_point":"1","exchangeable_gacha_point":400,"is_exchangeable_gacha_point":false}. /// v1 only persists the static catalog values; per-viewer accrual is deferred. /// [Owned] public class PackGachaPointConfig { public int ExchangeablePoint { get; set; } public int IncreaseGachaPoint { get; set; } }