Rob / Application /DTOs /AdminDTOs /CreateAdminKeyDTO.cs
danylokhodus's picture
Initial clean backend commit
70556b7
Raw
History Blame Contribute Delete
438 Bytes
namespace Application.DTOs.AdminDTOs;
/// <summary>
/// DTO for creating a new admin registration key
/// </summary>
public class CreateAdminKeyDTO
{
/// <summary>
/// Optional expiration date for the key (null = no expiration)
/// </summary>
public DateTime? ExpiresAt { get; set; }
/// <summary>
/// Optional description or note about this key
/// </summary>
public string? Description { get; set; }
}