LANCommander/LANCommander.SDK/Models/Settings/AuthenticationSettings.cs
2026-06-22 21:08:48 -05:00

15 lines
No EOL
429 B
C#

using System;
using YamlDotNet.Core;
using YamlDotNet.Serialization;
namespace LANCommander.SDK.Models;
public class AuthenticationSettings
{
[YamlMember(typeof(string))]
public Uri ServerAddress { get; set; }
public AuthToken Token { get; set; }
public bool OfflineModeEnabled { get; set; }
public bool AllowRegistration { get; set; } = true;
public bool AutoRedirectToProvider { get; set; } = false;
}