15 lines
244 B
C#
15 lines
244 B
C#
using System;
|
|
|
|
namespace Websockets.ServiceModels
|
|
{
|
|
public class GetTokenResponse
|
|
{
|
|
public Guid OneTimeToken { get; }
|
|
|
|
public GetTokenResponse(Guid token)
|
|
{
|
|
OneTimeToken = token;
|
|
}
|
|
}
|
|
}
|