Initial commit

This commit is contained in:
BillyCool
2026-04-21 01:10:25 +10:00
commit c5595ea083
1752 changed files with 45767 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserGimmick : IUserEntity
{
public long UserId { get; set; }
public int GimmickSequenceScheduleId { get; set; }
public int GimmickSequenceId { get; set; }
public int GimmickId { get; set; }
public bool IsGimmickCleared { get; set; }
public long StartDatetime { get; set; }
public long LatestVersion { get; set; }
}