more types
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user