忽略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,48 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicPartnerSubscribeSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicPartnerSubscribeSyncModel : AopObject
{
/// <summary>
/// 是否接受服务窗消息
/// </summary>
[JsonProperty("accept_msg")]
public string AcceptMsg { get; set; }
/// <summary>
/// 关注的服务窗id
/// </summary>
[JsonProperty("follow_object_id")]
public string FollowObjectId { get; set; }
/// <summary>
/// 操作类型,添加关注或取消关注
/// </summary>
[JsonProperty("operate_type")]
public string OperateType { get; set; }
/// <summary>
/// 是否打开接收公众号PUSH提醒开关 ON:打开 OFF:关闭
/// </summary>
[JsonProperty("push_switch")]
public string PushSwitch { get; set; }
/// <summary>
/// 关注来源
/// </summary>
[JsonProperty("source_id")]
public string SourceId { get; set; }
/// <summary>
/// 关注服务窗的用户id
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}