namespace Microsoft.SelfService.Portal.Core.API.Dto.Auth { public class TokenResponseDto { public string AccessToken { get; set; } = string.Empty; public string TokenType { get; set; } = "Bearer"; public int ExpiresIn { get; set; } public string Scope { get; set; } = string.Empty; } }