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

19 lines
406 B
C#

using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserGimmickUnlock : IUserEntity
{
public long UserId { get; set; }
public int GimmickSequenceScheduleId { get; set; }
public int GimmickSequenceId { get; set; }
public int GimmickId { get; set; }
public bool IsUnlocked { get; set; }
public long LatestVersion { get; set; }
}