add init for cache dto

This commit is contained in:
Stanley Dimant
2022-07-24 03:25:38 +02:00
parent fc5fbddf3b
commit e67c399f4e

View File

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