using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Shared
{
[System.Serializable]
public class ResultStatus
{
///
/// 状态码
///
public int Code;
///
/// 状态
///
public string Status;
///
/// 当前账户ID
///
public int ID;
///
/// 信号值
///
public int Flag;
///
/// 账户类型
///
public int AccountType;
///
/// 主账号ID
///
public int MasterID;
}
}