Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 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; }
- }
- }
|