18 lines
386 B
C#
18 lines
386 B
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Scene Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class Scene : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 场景Id,最长32位,英文字母、数字以及下划线,开发者自定义
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("scene_id")]
|
|||
|
|
public string SceneId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|