NewGaoKaoApi/PaymentSDK/AliPay/Domain/FengdieActivitySchemaModel.cs

25 lines
744 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>
/// FengdieActivitySchemaModel Data Structure.
/// </summary>
[Serializable]
public class FengdieActivitySchemaModel : AopObject
{
/// <summary>
/// 指定 schema 具体数据, 格式为 schema 数据 JSON 序列化后字符串,参照模板包中 schema_path 同名的 json 文件
/// </summary>
[XmlElement("schema_data")]
public string SchemaData { get; set; }
/// <summary>
/// schema文件相对模板包根目录的路径不需要写后缀".schema"
/// </summary>
[XmlElement("schema_path")]
public string SchemaPath { get; set; }
}
}