namespace Microsoft.SelfService.Portal.Core.API.Dto.Auth { public class GetManagedTokenDto { public Guid Id { get; set; } public string Subject { get; set; } = string.Empty; public string SubjectType { get; set; } = string.Empty; public string? ClientId { get; set; } public string Name { get; set; } = string.Empty; public string Scope { get; set; } = string.Empty; public DateTime IssuedAt { get; set; } public DateTime ExpiresAt { get; set; } public DateTime? RevokedAt { get; set; } public string? RevokedBy { get; set; } public DateTime? LastUsedAt { get; set; } public bool IsActive { get; set; } } }