Files

18 lines
323 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KeyanColumn Data Structure.
/// </summary>
[Serializable]
public class KeyanColumn : AopObject
{
/// <summary>
/// 密码
/// </summary>
[JsonProperty("password")]
public string Password { get; set; }
}
}