22 lines
403 B
C#
22 lines
403 B
C#
using System;
|
|
|
|
namespace AspShogiSockets.ServiceModels.Api.Messages
|
|
{
|
|
public class GetGuestToken
|
|
{
|
|
public string ClientId { get; set; }
|
|
}
|
|
|
|
public class GetGuestTokenResponse
|
|
{
|
|
public string ClientId { get; }
|
|
public Guid OneTimeToken { get; }
|
|
|
|
public GetGuestTokenResponse(string clientId, Guid token)
|
|
{
|
|
ClientId = clientId;
|
|
OneTimeToken = token;
|
|
}
|
|
}
|
|
}
|