Files
LightlessClient/LightlessSync/MareConfiguration/Models/Authentication.cs
2025-08-24 15:06:46 +02:00

12 lines
396 B
C#

namespace LightlessSync.LightlessConfiguration.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;
}