|
@@ -1,4 +1,6 @@
|
|
|
-namespace DataSharing.Share.Dtos.Province
|
|
|
+using System.Text.Json.Serialization;
|
|
|
+
|
|
|
+namespace DataSharing.Share.Dtos.Province
|
|
|
{
|
|
|
public class ClientInfo
|
|
|
{
|
|
@@ -7,8 +9,16 @@
|
|
|
ClientId = clientId;
|
|
|
ClientSecret = clientSecret;
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 账号
|
|
|
+ /// </summary>
|
|
|
+ [JsonPropertyName("Client_id")]
|
|
|
public string ClientId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 密码
|
|
|
+ /// </summary>
|
|
|
+ [JsonPropertyName("Client_secret")]
|
|
|
public string ClientSecret { get; set; }
|
|
|
}
|
|
|
}
|