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