NewGaoKaoApi/PaymentSDK/AliPay/Domain/Scene.cs

19 lines
426 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>
/// Scene Data Structure.
/// </summary>
[Serializable]
public class Scene : AopObject
{
/// <summary>
/// 场景Id最长32位英文字母、数字以及下划线开发者自定义
/// </summary>
[XmlElement("scene_id")]
public string SceneId { get; set; }
}
}