18 lines
456 B
C#
18 lines
456 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayEcoCplifeCommunityDetailsQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayEcoCplifeCommunityDetailsQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 支付宝社区小区统一编号,必须在物业账号名下存在。
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("community_id")]
|
||
|
|
public string CommunityId { get; set; }
|
||
|
|
}
|
||
|
|
}
|