UpdateProductDto.cs 317 B

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