|
123456789101112131415 |
- using MediatR;
-
- namespace Diligent.WebAPI.Host.Mediator.Request.Commands
- {
- public class AcceptCustomerRequestCommand:IRequest<string>
- {
- public AcceptCustomerRequestCommand(string customerId,string roomId)
- {
- CustomerId = customerId;
- RoomId = roomId;
- }
- public string CustomerId { get; }
- public string RoomId { get; }
- }
- }
|