mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:07:22 +01:00
8 lines
289 B
C#
8 lines
289 B
C#
namespace MareSynchronos.PlayerData.Data;
|
|
|
|
public class CharacterDataFragment
|
|
{
|
|
public string CustomizePlusScale { get; set; } = string.Empty;
|
|
public HashSet<FileReplacement> FileReplacements { get; set; } = [];
|
|
public string GlamourerString { get; set; } = string.Empty;
|
|
}
|