sledgemapper/Sledgemapper.Api/Commands/NewWallCommand.cs
Michele Scandura af441e772b cleanup
2020-11-18 11:09:26 +00:00

14 lines
335 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Commands
{
public class NewWallCommand : BaseCommand<bool>
{
public Wall Wall { get; private set; }
public NewWallCommand(string sessionName, Wall wall, int userId) : base(sessionName, userId)
{
Wall = wall;
}
}
}