Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
| 123456789101112131415 |
- using MediatR;
-
- namespace Diligent.WebAPI.Host.Mediator.Request.Commands
- {
- public class RejectCustomerRequestCommand:IRequest<string>
- {
- public RejectCustomerRequestCommand(string customerId, string roomId)
- {
- CustomerId = customerId;
- RoomId = roomId;
- }
- public string CustomerId { get; }
- public string RoomId { get; }
- }
- }
|