using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_DTO.ERP
|
{
|
public class ERPtoken
|
{
|
public string result { get; set; }
|
|
public error error { get; set; } = new error();
|
|
public value value { get; set; } = new value();
|
}
|
|
public class error
|
{
|
public string code { get; set; }
|
public string msg { get; set; }
|
public string hint { get; set; }
|
}
|
|
public class value
|
{
|
public string accessToken { get; set; }
|
public string refreshToken { get; set; }
|
public string scope { get; set; }
|
public string expiresIn { get; set; }
|
public string userId { get; set; }
|
public string orgId { get; set; }
|
public string appName { get; set; }
|
public string refreshExpiresIn { get; set; }
|
}
|
}
|