namespace FindAndDrive.Domain.Models.DTO.Response; public class ApiKeyResponse { public Guid ApiKeyId { get; set; } public Guid ClientId { get; set; } public Guid RoleId { get; set; } public bool Revoked { get; set; } public DateTime? ModifiedAt { get; set; } public DateTime CreatedAt { get; set; } }