Detect disconnection from server, automatically go into offline mode

This commit is contained in:
Pat Hartl 2025-01-18 20:25:39 -06:00
parent 38e95c9102
commit cf7e81ba54
16 changed files with 844 additions and 437 deletions

View file

@ -0,0 +1,7 @@
namespace LANCommander.Launcher.Models;
public class ConnectionState
{
public bool IsConnected { get; set; }
public bool OfflineModeEnabled { get; set; }
}