You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CreateRoomCommand.cs 300B

1234567891011121314
  1. using Diligent.WebAPI.Data.Entities;
  2. using MediatR;
  3. namespace Diligent.WebAPI.Host.Mediator.Rooms.Commands
  4. {
  5. public class CreateRoomCommand:IRequest<Unit>
  6. {
  7. public Room Room { get; }
  8. public CreateRoomCommand(Room room)
  9. {
  10. Room = room;
  11. }
  12. }
  13. }