using System; namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api.Messages { public class GetTokenResponse { public Guid OneTimeToken { get; } public GetTokenResponse(Guid token) { OneTimeToken = token; } } }