14 lines
344 B
C#
14 lines
344 B
C#
using Sledgemapper.Shared.Entities;
|
|
|
|
namespace Sledgemapper.Api.Commands
|
|
{
|
|
public class DeleteTileCommand : BaseCommand<bool>
|
|
{
|
|
public Tile Tile { get; private set; }
|
|
|
|
public DeleteTileCommand(string sessionName, Tile tile, string userId) : base(sessionName, userId)
|
|
{
|
|
Tile = tile;
|
|
}
|
|
}
|
|
}
|