adjust character cache dto

This commit is contained in:
Stanley Dimant
2022-07-24 00:41:44 +02:00
parent ffc0a48fda
commit 96d17b006e

View File

@@ -4,9 +4,8 @@ namespace MareSynchronos.API
{
public record CharacterCacheDto
{
public ObjectKind ObjectKind { get; set; }
public List<FileReplacementDto> FileReplacements { get; set; } = new();
public string GlamourerData { get; set; }
public Dictionary<ObjectKind, FileReplacementDto> FileReplacements { get; set; } = new();
public Dictionary<ObjectKind, string> GlamourerData { get; set; }
public string ManipulationData { get; set; }
public string Hash { get; set; }
}