mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-06 12:53:38 +02:00
17 lines
358 B
C#
17 lines
358 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserCostumeLotteryEffect : IUserEntity
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public string UserCostumeUuid { get; set; }
|
|
|
|
public int SlotNumber { get; set; }
|
|
|
|
public int OddsNumber { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|