UpdateProductDto.cs 271 B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations;
  2. using Products.Common.Types;
  3. namespace Products.Common.Dtos;
  4. public record UpdateProductDto(
  5. [Required]
  6. [MinLength(1)]
  7. string Name,
  8. [Required]
  9. Color Color,
  10. [Required]
  11. string Brand
  12. );