mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 21:27:22 +01:00
12 lines
343 B
C#
12 lines
343 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MareSynchronos.API
|
|
{
|
|
public record CharacterCacheDto
|
|
{
|
|
public List<FileReplacementDto> FileReplacements { get; set; } = new();
|
|
public string GlamourerData { get; set; }
|
|
public string ManipulationData { get; set; }
|
|
public string Hash { get; set; }
|
|
}
|
|
}
|