Files
it/MinimalAPI/Models/DTOs/CategoryDto.cs
2025-11-03 17:03:57 +08:00

9 lines
243 B
C#

namespace HardwarePerformance.Models.DTOs
{
public class CategoryDto
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
}
}