mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
9 lines
249 B
C#
9 lines
249 B
C#
namespace MareSynchronos.MareConfiguration;
|
|
|
|
[Serializable]
|
|
public record Authentication
|
|
{
|
|
public string CharacterName { get; set; } = string.Empty;
|
|
public uint WorldId { get; set; } = 0;
|
|
public int SecretKeyIdx { get; set; } = -1;
|
|
}
|