Files
MariesWonderland/src/Models/Entities/EntityIUserShopItem.cs
2026-04-21 01:10:25 +10:00

17 lines
362 B
C#

using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserShopItem : IUserEntity
{
public long UserId { get; set; }
public int ShopItemId { get; set; }
public int BoughtCount { get; set; }
public long LatestBoughtCountChangedDatetime { get; set; }
public long LatestVersion { get; set; }
}