forked from Eauldane/SnowcloakClient
9 lines
255 B
C#
9 lines
255 B
C#
namespace MareSynchronos.MareConfiguration.Models;
|
|
|
|
[Serializable]
|
|
public record Authentication
|
|
{
|
|
public string CharacterName { get; set; } = string.Empty;
|
|
public uint WorldId { get; set; } = 0;
|
|
public int SecretKeyIdx { get; set; } = -1;
|
|
} |