mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-15 08:43:40 +02:00
17 lines
362 B
C#
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; }
|
|
}
|