20 lines
387 B
C#
20 lines
387 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Lobbies
|
|
{
|
|
public class LobbyJoinFailReason
|
|
{
|
|
public enum FailReasons
|
|
{
|
|
WrongPassword,
|
|
LobbyNotFound,
|
|
LobbyFull
|
|
}
|
|
|
|
public FailReasons Reason { get; internal set; }
|
|
public string? ErrorMessage { get; internal set; }
|
|
}
|
|
}
|