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

13 lines
287 B
C#

using MariesWonderland.Models.Type;
namespace MariesWonderland.Models.Entities;
public class EntityIUserMainQuestFlowStatus : IUserEntity
{
public long UserId { get; set; }
public QuestFlowType CurrentQuestFlowType { get; set; }
public long LatestVersion { get; set; }
}