您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }