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

14 lines
341 B
C#

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