namespace FindAndDrive.Domain.Models.DTO.Response; public class ApiKeyCreateResponse { public Guid ApiKeyId { get; set; } public Guid ClientId { get; set; } public Guid RoleId { get; set; } public string KeySecret { get; set; } public DateTime CreatedAt { get; set; } }