namespace LiteCharms.Features.Api.Models; public sealed class TokenRequest { [JsonPropertyName("grant_type")] [AliasAs("grant_type")] public string? GrantType { get; set; } [JsonPropertyName("client_id")] [AliasAs("client_id")] public string? ClientId { get; set; } [JsonPropertyName("client_secret")] [AliasAs("client_secret")] public string? ClientSecret { get; set; } [JsonPropertyName("scope")] [AliasAs("scope")] public string? Scope { get; set; } }