Spaces:
Paused
Paused
| using System; | |
| namespace Application.DTOs.AdminDTOs | |
| { | |
| public class AdminUpdateKeyDTO | |
| { | |
| public int Id { get; set; } | |
| public DateTime? ExpiresAt { get; set; } | |
| public string? Description { get; set; } | |
| } | |
| } | |