mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-03-28 17:52:23 +01:00
27 lines
562 B
C#
27 lines
562 B
C#
using MariesWonderland.Models.Type;
|
|
|
|
namespace MariesWonderland.Models.Entities;
|
|
|
|
public class EntityIUserQuest
|
|
{
|
|
public long UserId { get; set; }
|
|
|
|
public int QuestId { get; set; }
|
|
|
|
public int QuestStateType { get; set; }
|
|
|
|
public bool IsBattleOnly { get; set; }
|
|
|
|
public long LatestStartDatetime { get; set; }
|
|
|
|
public int ClearCount { get; set; }
|
|
|
|
public int DailyClearCount { get; set; }
|
|
|
|
public long LastClearDatetime { get; set; }
|
|
|
|
public int ShortestClearFrames { get; set; }
|
|
|
|
public long LatestVersion { get; set; }
|
|
}
|