忽略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,54 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// NewsfeedMediaLinkInfo Data Structure.
/// </summary>
[Serializable]
public class NewsfeedMediaLinkInfo : AopObject
{
/// <summary>
/// 资源ID
/// </summary>
[JsonProperty("content_id")]
public string ContentId { get; set; }
/// <summary>
/// 资源的来源
/// </summary>
[JsonProperty("content_source")]
public string ContentSource { get; set; }
/// <summary>
/// 资源类型
/// </summary>
[JsonProperty("content_type")]
public string ContentType { get; set; }
/// <summary>
/// 描述
/// </summary>
[JsonProperty("desc")]
public string Desc { get; set; }
/// <summary>
/// 链接的缩略图
/// </summary>
[JsonProperty("thumb")]
public string Thumb { get; set; }
/// <summary>
/// 标题
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
/// <summary>
/// linkurl
/// </summary>
[JsonProperty("url")]
public string Url { get; set; }
}
}