Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. using MediatR;
  2. using TinRoll.Data.Entities;
  3.  
  4. namespace TinRoll.Logic.Commands
  5. {
  6. public class CreateUserCommand : IRequest<int>
  7. {
  8. public CreateUserCommand(User user)
  9. {
  10. User = user;
  11. }
  12. public User User { get; set; }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement