15 lines
351 B
C#
15 lines
351 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace NahidaImpact.SDK.Models;
|
|
|
|
public record ShieldApiAuthResponse
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public AuthSuccessData? Data { get; set; }
|
|
|
|
[JsonPropertyName("message")]
|
|
public string Message { get; set; } = "OK";
|
|
|
|
[JsonPropertyName("retcode")]
|
|
public int Retcode { get; set; }
|
|
}
|