Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 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; }
- }
- }
|