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