| 1234567891011121314151617 |
- using System.ComponentModel.DataAnnotations;
-
- namespace BlackRock.Reporting.API.Mediator.Model
- {
- public class UserCommand
- {
- [Required]
- public string Name { get; }
- [Required]
- public string Email { get; }
- public UserCommand(string Name,string Email)
- {
- this.Name = Name;
- this.Email = Email;
- }
- }
- }
|