mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
19 lines
517 B
C#
19 lines
517 B
C#
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; } = [];
|
|
} |