忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,43 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// Article Data Structure.
/// </summary>
[Serializable]
public class Article : AopObject
{
/// <summary>
/// 链接文字
/// </summary>
[JsonProperty("action_name")]
public string ActionName { get; set; }
/// <summary>
/// 图文消息内容
/// </summary>
[JsonProperty("desc")]
public string Desc { get; set; }
/// <summary>
/// 图片链接,对于多条图文消息的第一条消息,该字段不能为空; 请先调用
/// <a href="https://docs.open.alipay.com/api_3/alipay.offline.material.image.upload"> 图片上传接口</a>获得图片url
/// </summary>
[JsonProperty("image_url")]
public string ImageUrl { get; set; }
/// <summary>
/// 图文消息标题
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
/// <summary>
/// 点击图文消息跳转的链接
/// </summary>
[JsonProperty("url")]
public string Url { get; set; }
}
}