namespace Application.DTOs.AdminDTOs;
///
/// DTO for creating a new admin registration key
///
public class CreateAdminKeyDTO
{
///
/// Optional expiration date for the key (null = no expiration)
///
public DateTime? ExpiresAt { get; set; }
///
/// Optional description or note about this key
///
public string? Description { get; set; }
}