namespace Microsoft.SelfService.Portal.Core.API.Dto.Auth { public class TokenRequestDto { public string ClientId { get; set; } = string.Empty; public string ClientSecret { get; set; } = string.Empty; public string? Scope { get; set; } } }