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

24 lines
458 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>
/// KbAdvertAdvContent Data Structure.
/// </summary>
[Serializable]
public class KbAdvertAdvContent : AopObject
{
/// <summary>
/// 二维码
/// </summary>
[JsonProperty("codec")]
public string Codec { get; set; }
/// <summary>
/// 访问地址
/// </summary>
[JsonProperty("link_url")]
public string LinkUrl { get; set; }
}
}