NewGaoKaoApi/PaymentSDK/AliPay/Domain/ShopExtInfo.cs

25 lines
559 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ShopExtInfo Data Structure.
/// </summary>
[Serializable]
public class ShopExtInfo : AopObject
{
/// <summary>
/// KV数据对的key表示该kv对象表示什么含义。
/// </summary>
[XmlElement("key_name")]
public string KeyName { get; set; }
/// <summary>
/// kv对象的值
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}