13 lines
343 B
C#
13 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; }
|
|
}
|
|
}
|