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