mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
288 B
C#
10 lines
288 B
C#
using EggLink.DanhengServer.Proto;
|
|
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database.Tutorial;
|
|
|
|
[SugarTable("Tutorial")]
|
|
public class TutorialData : BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsJson = true)] public Dictionary<int, TutorialStatus> Tutorials { get; set; } = [];
|
|
} |