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.

AcceptCustomerRequestCommand.cs 398B

123456789101112131415
  1. using MediatR;
  2. namespace Diligent.WebAPI.Host.Mediator.Request.Commands
  3. {
  4. public class AcceptCustomerRequestCommand:IRequest<string>
  5. {
  6. public AcceptCustomerRequestCommand(string customerId,string roomId)
  7. {
  8. CustomerId = customerId;
  9. RoomId = roomId;
  10. }
  11. public string CustomerId { get; }
  12. public string RoomId { get; }
  13. }
  14. }