mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
Init enter game
This commit is contained in:
19
Common/Database/Lineup/LineupData.cs
Normal file
19
Common/Database/Lineup/LineupData.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using SqlSugar;
|
||||
|
||||
namespace KianaBH.Database.Lineup;
|
||||
|
||||
[SugarTable("Lineup")]
|
||||
public class LineupData : BaseDatabaseDataHelper
|
||||
{
|
||||
[SugarColumn(IsJson = true)] public Dictionary<int, LineupInfo> Lineups { get; set; } = [];
|
||||
}
|
||||
|
||||
public class LineupInfo
|
||||
{
|
||||
public uint Id { get; set; }
|
||||
public string? Name { get; set; }
|
||||
public uint AstraMateId { get; set; }
|
||||
public bool IsUsingAstraMate { get; set; }
|
||||
public List<uint> AvatarIds { get; set; } = [];
|
||||
public List<uint> ElfIds { get; set; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user