mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-05-15 08:43:40 +02:00
15 lines
335 B
C#
15 lines
335 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserQuestSceneChoice : IUserEntity
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int QuestSceneChoiceGroupingId { get; set; }
|
|
|
|
public int QuestSceneChoiceEffectId { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|