mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-06 12:53:38 +02:00
21 lines
451 B
C#
21 lines
451 B
C#
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; }
|
|
}
|