using System;
namespace Shared
{
//[Serializable]
//public class SubAccountRes
//{
// public int UserID { get; set; }
// public string Account { get; set; }
// public int IsEnable { get; set; }
// public int UserType { get; set; }
// public string Remark { get; set; }
//}
///
/// 获取成员信息的结果
///
/// [Serializable]
public class SubAccountRes
{
///
/// 账号
///
public string Account = string.Empty;
///
/// 账号昵称
///
public string UserName = string.Empty;
///
/// SubAccountDistributedMark
///
public string SubAccountDistributedMark = string.Empty;
///
/// DistributedMark
///
public string DistributedMark = string.Empty;
///
/// AccountType
///
public int AccountType = 0;
}
}