30 lines
523 B
C#
30 lines
523 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.HttpResponse;
|
|
|
|
public record GetBodyResponseData<T>
|
|
{
|
|
[JsonPropertyName("err")]
|
|
public BackendErrorCodes? Err
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
[JsonPropertyName("errmsg")]
|
|
public string? ErrMsg
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("data")]
|
|
public T? Data
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|