namespace Microsoft.SelfService.Portal.Core.API.Dto.Auth { public class CreateManagedTokenRequestDto { public string Name { get; set; } = string.Empty; public string Scope { get; set; } = string.Empty; public DateTime? ExpiresAt { get; set; } } }