忽略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,50 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KbAdvertMissionResponse Data Structure.
/// </summary>
[Serializable]
public class KbAdvertMissionResponse : AopObject
{
/// <summary>
/// 任务领取时间
/// </summary>
[JsonProperty("gmt_claimed")]
public string GmtClaimed { get; set; }
/// <summary>
/// 任务结束时间
/// </summary>
[JsonProperty("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 任务开始时间
/// </summary>
[JsonProperty("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 任务ID
/// </summary>
[JsonProperty("mission_id")]
public string MissionId { get; set; }
/// <summary>
/// 推广状态 EFFECTIVE-有效 INVALID-无效
/// </summary>
[JsonProperty("promote_status")]
public string PromoteStatus { get; set; }
/// <summary>
/// 任务标的列表
/// </summary>
[JsonProperty("subjects")]
public List<KbAdvertSubjectResponse> Subjects { get; set; }
}
}