初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOpenPublicLifeModifyResponse.
/// </summary>
public class AlipayOpenPublicLifeModifyResponse : AopResponse
{
/// <summary>
/// 修改时间。
/// </summary>
[JsonProperty("modify_time")]
public string ModifyTime { get; set; }
/// <summary>
/// 生活号id用于表示此生活号唯一性
/// </summary>
[JsonProperty("public_id")]
public string PublicId { get; set; }
}
}