using System; namespace Websockets.ServiceModels { public class GetTokenResponse { public Guid OneTimeToken { get; } public GetTokenResponse(Guid token) { OneTimeToken = token; } } }