mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 12:46:03 +08:00
18 lines
445 B
C#
18 lines
445 B
C#
using EggLink.DanhengServer.Proto;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Database.Tutorial
|
|
{
|
|
[SugarTable("TutorialGuide")]
|
|
public class TutorialGuideData : BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsJson = true)]
|
|
public Dictionary<int, TutorialStatus> Tutorials { get; set; } = [];
|
|
}
|
|
}
|