NahidaImpact/NahidaImpact.SDK/Models/AuthAccountData.cs

25 lines
568 B
C#
Raw Normal View History

2024-01-04 13:48:39 +00:00
using System.Text.Json.Serialization;
namespace NahidaImpact.SDK.Models;
public record AuthAccountData
{
[JsonPropertyName("area_code")]
public string? AreaCode { get; set; }
[JsonPropertyName("email")]
public string? Email { get; set; }
[JsonPropertyName("country")]
public string? Country { get; set; }
[JsonPropertyName("is_email_verify")]
public string? IsEmailVerify { get; set; }
[JsonPropertyName("token")]
public string? Token { get; set; }
[JsonPropertyName("uid")]
public string? Uid { get; set; }
}