19 lines
401 B
C#
19 lines
401 B
C#
using System;
|
|
|
|
namespace Gameboard.ShogiUI.Sockets.ServiceModels.Api
|
|
{
|
|
public class GetGuestTokenResponse
|
|
{
|
|
public string UserId { get; }
|
|
public string DisplayName { get; }
|
|
public Guid OneTimeToken { get; }
|
|
|
|
public GetGuestTokenResponse(string id, string displayName, Guid token)
|
|
{
|
|
UserId = id;
|
|
DisplayName = displayName;
|
|
OneTimeToken = token;
|
|
}
|
|
}
|
|
}
|