Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/Account/GetAccountListResult.cs

16 lines
278 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
using System.Collections.Generic;
namespace Aitex.Core.Account
{
[Serializable]
public class GetAccountListResult
{
public bool ActSuccess { get; set; }
public IEnumerable<Account> AccountList { get; set; }
public string Description { get; set; }
}
}