ProductDto.cs 171 B

12345678910
  1. using Products.Common.Types;
  2. namespace Products.Common.Dtos;
  3. public record ProductDto(
  4. string Name,
  5. string Color,
  6. string Brand,
  7. int Id
  8. );