Sic.Framework/MECF.Framework.Common/Aitex/Core/Account/ChangePwdResult.cs

13 lines
179 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
namespace Aitex.Core.Account
{
[Serializable]
public class ChangePwdResult
{
public bool ActSucc { get; set; }
public string Description { get; set; }
}
}