LANCommander/LANCommander.SDK/Models/Settings/AuthenticationSettings.cs
2025-11-19 00:36:03 -06:00

13 lines
No EOL
311 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; }
}