Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

UserCommand.cs 320B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations;
  2. namespace BlackRock.Reporting.API.Mediator.Model
  3. {
  4. public class UserCommand
  5. {
  6. [Required]
  7. public string Name { get; }
  8. [Required]
  9. public string Email { get; }
  10. public UserCommand(string Name,string Email)
  11. {
  12. this.Name = Name;
  13. this.Email = Email;
  14. }
  15. }
  16. }