2021-04-08 21:36:08 -05:00
|
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
|
2021-04-21 02:00:50 -05:00
|
|
|
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
2021-04-21 01:14:05 -05:00
|
|
|
public struct ConnectResponse
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
|
|
|
public string identifier;
|
|
|
|
public bool nameTaken;
|
|
|
|
public bool invalidName;
|
|
|
|
public string errorMsg;
|
|
|
|
}
|
|
|
|
}
|