Files
ClubPenguinApi/MareSynchronosAPI/CharacterCacheDto.cs
Stanley Dimant af8516d44a add API solution
2022-07-17 00:04:20 +02:00

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; }
}
}