You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
933 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Models.DigitalSignature
{
public class JwtResponse
{
public string ResponseCode { get; set; }
public string Msg { get; set; }
public string Id { get; set; }
public object Data { get; set; }
public string Extra { get; set; }
}
public class BracApiResponse
{
public bool Success { get; set; }
public string StatusCode { get; set; }
public object MessageType { get; set; }
public string StatusDescription { get; set; }
//public List<object> Data { get; set; }
}
public class TokenData
{
public string Token { get; set; }
public int ExpiryTime { get; set; }
public string TokenType { get; set; }
}
public class TokenResponse : BracApiResponse
{
public TokenData Data { get; set; }
}
}