mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-15 06:44:14 +01:00
13 lines
382 B
C#
13 lines
382 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; }
|
|
public int JobId { get; set; }
|
|
}
|
|
}
|