update api (#15)

Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
This commit is contained in:
rootdarkarchon
2023-07-17 08:52:46 +02:00
committed by GitHub
parent 51645cbc79
commit a5373bca24
2 changed files with 5 additions and 5 deletions

View File

@@ -22,14 +22,14 @@ public class CharacterData
});
}
public Dictionary<ObjectKind, string> CustomizePlusData { get; set; } = new();
[JsonIgnore]
public Lazy<string> DataHash { get; }
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;
public string HeelsData { get; set; } = string.Empty;
public string HonorificData { get; set; } = string.Empty;
public string ManipulationData { get; set; } = string.Empty;
public string PalettePlusData { get; set; } = string.Empty;
}

View File

@@ -7,7 +7,7 @@ namespace MareSynchronos.API.SignalR;
public interface IMareHub
{
const int ApiVersion = 24;
const int ApiVersion = 25;
const string Path = "/mare";
Task<bool> CheckClientHealth();