more types

This commit is contained in:
CWX
2025-01-06 22:15:13 +00:00
parent b292dcb0b5
commit fdf913c88c
13 changed files with 242 additions and 21 deletions
@@ -0,0 +1,15 @@
using System.Text.Json.Serialization;
namespace Core.Models.Eft.HttpResponse;
public class GetBodyResponseData<T>
{
[JsonPropertyName("err")]
public int Err { get; set; }
[JsonPropertyName("errmsg")]
public string ErrMsg { get; set; }
[JsonPropertyName("data")]
public T Data { get; set; }
}