12 lines
299 B
C#
Raw Permalink Normal View History

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