Files
it/MinimalAPI/Models/DTOs/CategoryDto.cs

9 lines
243 B
C#
Raw Normal View History

2025-11-03 17:03:57 +08:00
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;
}
}