sledgemapper/Sledgemapper.Api/Commands/NewRoomCommand.cs
Michele Scandura 4fd77a1f17
Some checks failed
continuous-integration/drone/push Build is failing
working base entities creation
2021-09-20 15:16:43 +01:00

15 lines
367 B
C#

using Sledgemapper.Shared.Entities;
using System;
namespace Sledgemapper.Api.Commands
{
public class NewRoomCommand : BaseCommand<bool>
{
public Room Room { get; private set; }
public NewRoomCommand(Guid campaignId, Guid mapId, Room room, string userId) : base(campaignId, mapId, userId)
{
Room = room;
}
}
}