You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RemoveUserFromGroupCommand.cs 378B

12345678910111213141516
  1. using MediatR;
  2. namespace Diligent.WebAPI.Host.Mediator.Rooms.Commands
  3. {
  4. public class RemoveUserFromGroupCommand : IRequest<Unit>
  5. {
  6. public string RoomId { get; }
  7. public string UserId { get; }
  8. public RemoveUserFromGroupCommand(string roomId, string userId)
  9. {
  10. RoomId = roomId;
  11. UserId = userId;
  12. }
  13. }
  14. }