using Microsoft.EntityFrameworkCore; using SVSim.Database.Enums; namespace SVSim.Database.Models; /// /// One per-buy reward attached to a leader-skin product. Owned by /// . Captures show each skin product bundles 3 rewards: /// the skin itself (type=10), the matching emblem (type=7), and the matching sleeve (type=6). /// [Owned] public class LeaderSkinShopProductRewardEntry { public int OrderIndex { get; set; } public UserGoodsType RewardType { get; set; } public long RewardDetailId { get; set; } public int RewardNumber { get; set; } }