Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }