Guest User

Untitled

a guest
Apr 11th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class CreateUser : IRequest<Response>
  2. {
  3. public string Name { get; }
  4. public string Email { get; }
  5. public string Password { get; }
  6. public string ConfirmPassword { get; }
  7.  
  8. public CreateUser(string name, string email, string password, string confirmPassword)
  9. {
  10. Name = name;
  11. Email = email;
  12. Password = password;
  13. ConfirmPassword = confirmPassword;
  14. }
  15. }
Add Comment
Please, Sign In to add comment