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