14 lines
344 B
C#
14 lines
344 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, string userId) : base(sessionName, userId)
|
|
{
|
|
Wall = wall;
|
|
}
|
|
}
|
|
}
|