* add messagepack attributes * fix isnullorempty * bump api version --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
15 lines
615 B
C#
15 lines
615 B
C#
using MareSynchronos.API.Data.Enum;
|
|
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Data;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public class CharacterData : HashableDataBase
|
|
{
|
|
public Dictionary<ObjectKind, List<FileReplacementData>> FileReplacements { get; set; } = new();
|
|
public Dictionary<ObjectKind, string> GlamourerData { get; set; } = new();
|
|
public string ManipulationData { get; set; } = string.Empty;
|
|
public string CustomizePlusData { get; set; } = string.Empty;
|
|
public string PalettePlusData { get; set; } = string.Empty;
|
|
public float HeelsOffset { get; set; } = 0.0f;
|
|
} |