Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InsMktFactorDTO.cs

24 lines
449 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsMktFactorDTO Data Structure.
/// </summary>
[Serializable]
public class InsMktFactorDTO : AopObject
{
/// <summary>
/// 规则因子
/// </summary>
[JsonProperty("key")]
public string Key { get; set; }
/// <summary>
/// 规则因子值
/// </summary>
[JsonProperty("value")]
public string Value { get; set; }
}
}