|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Lobbies
|
|
{
|
|
public class LobbyClientDisconnectReason
|
|
{
|
|
public bool WasError { get; internal set; }
|
|
public string? ErrorMessage { get; internal set; }
|
|
}
|
|
}
|