NewGaoKaoApi/PaymentSDK/AliPay/Domain/ActionProperty.cs

31 lines
728 B
C#
Raw 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>
/// ActionProperty Data Structure.
/// </summary>
[Serializable]
public class ActionProperty : AopObject
{
/// <summary>
/// 属性C端渲染key
/// </summary>
[XmlElement("key")]
public string Key { get; set; }
/// <summary>
/// 交互动作属性元素类型IMG-图片TEXT-普通文本
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 属性图片URL属性文本值
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}