mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-28 17:52:23 +01:00
17 lines
362 B
C#
17 lines
362 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserQuestLimitContentStatus
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int QuestId { get; set; }
|
|
|
|
public int LimitContentQuestStatusType { get; set; }
|
|
|
|
public int EventQuestChapterId { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|