ProductDto.cs 142 B

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