sledgemapper/Sledgemapper.Api/Commands/DeleteTileCommand.cs
Michele Scandura 75dad86ba4
All checks were successful
continuous-integration/drone/push Build is passing
New campaign system
2021-09-23 09:44:56 +01:00

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;
}
}
}