|
using Knoks.Core.Entities;
|
|
using Knoks.Core.Entities.Interfaces;
|
|
|
|
namespace Knoks.Api.Entities
|
|
{
|
|
public class TokenResponse : IApiResult
|
|
{
|
|
public string Token { get; set; }
|
|
public int Expiry { get; set; }
|
|
public bool IsUser { get; set; }
|
|
public bool IsOperator { get; set; }
|
|
}
|
|
}
|