忽略dll文件git
This commit is contained in:
@@ -1,39 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// QueryExtension Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class QueryExtension : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 扩展区列表
|
||||
/// </summary>
|
||||
[JsonProperty("areas")]
|
||||
|
||||
public List<ExtensionArea> Areas { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展区套id
|
||||
/// </summary>
|
||||
[JsonProperty("extension_key")]
|
||||
public string ExtensionKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标签规则列表
|
||||
/// </summary>
|
||||
[JsonProperty("label_rules")]
|
||||
|
||||
public List<QueryLabelRule> LabelRules { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展区状态,"ON"代表上线,"OFF"代表下线,只有上线的扩展区才能被用户看到
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user