Solution cleanup. Implement stubs for all remaining services. Add API models. Move configuration to appsettings.

This commit is contained in:
BillyCool
2026-03-13 22:25:43 +11:00
parent b855475446
commit dbe8ec4e99
1709 changed files with 27184 additions and 244 deletions

View File

@@ -0,0 +1,26 @@
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; }
}