Files
client/MareSynchronos/MareConfiguration/Models/Authentication.cs
Stanley Dimant c66b58d156 add disable autologon on a per character basis
add automatic notes population on empty notes
adjust mare command help text
2024-10-30 10:13:22 +01:00

11 lines
340 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;
}