18 lines
No EOL
393 B
C#
18 lines
No EOL
393 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace FurinaImpact.SDK.Models;
|
|
|
|
public record GranterLoginRequest
|
|
{
|
|
[JsonPropertyName("data")]
|
|
public required string Data { get; set; }
|
|
|
|
public record RequestData
|
|
{
|
|
[JsonPropertyName("uid")]
|
|
public string? OpenId { get; set; }
|
|
|
|
[JsonPropertyName("token")]
|
|
public string? Token { get; set; }
|
|
}
|
|
} |