2025-01-18 20:25:39 -06:00
|
|
|
namespace LANCommander.Launcher.Models;
|
|
|
|
|
|
|
|
|
|
public class ConnectionState
|
|
|
|
|
{
|
2025-01-20 12:10:30 -06:00
|
|
|
public bool ValidCredentials { get; set; }
|
2025-01-18 20:25:39 -06:00
|
|
|
public bool IsConnected { get; set; }
|
|
|
|
|
public bool OfflineModeEnabled { get; set; }
|
2025-06-12 04:04:04 +02:00
|
|
|
public bool IsStartup { get; set; }
|
2025-01-18 20:25:39 -06:00
|
|
|
}
|