mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 21:27:21 +01:00
12 lines
No EOL
392 B
C#
12 lines
No EOL
392 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;
|
|
public string? UID { get; set; }
|
|
public bool AutoLogin { get; set; } = true;
|
|
public ulong? LastSeenCID { get; set; } = null;
|
|
} |