refactor: clean code

This commit is contained in:
Fu Diwei
2022-03-11 20:07:12 +08:00
parent 6e4e621440
commit ac8034ee93
58 changed files with 206 additions and 155 deletions

View File

@@ -1,4 +1,6 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
using System;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /customservice/kfaccount/uploadheadimg 接口的请求。</para>
@@ -17,6 +19,6 @@
/// </summary>
[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
public byte[] HeadImageFileBytes { get; set; } = new byte[0];
public byte[] HeadImageFileBytes { get; set; } = Array.Empty<byte>();
}
}