✨
This commit is contained in:
19
StopShopping.OpenPlatform/TencentLocationApi/ResponseBase.cs
Normal file
19
StopShopping.OpenPlatform/TencentLocationApi/ResponseBase.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace StopShopping.OpenPlatform.TencentLocationApi;
|
||||
|
||||
public abstract record ResponseBase
|
||||
{
|
||||
/// <summary>
|
||||
/// 状态码
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
[JsonPropertyName("status")]
|
||||
public int Status { get; set; }
|
||||
/// <summary>
|
||||
/// 状态说明
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
[JsonPropertyName("message")]
|
||||
public string? Message { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user