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; } } }