sledgemapper/Sledgemapper.Api/Commands/DeleteTileCommand.cs
Michele Scandura a4eb4d2b88
All checks were successful
continuous-integration/drone/push Build is passing
smal fixes
2021-09-23 15:43:27 +01:00

15 lines
373 B
C#

using System;
using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Commands
{
public class DeleteTileCommand : BaseCommand<bool>
{
public Tile Tile { get; private set; }
public DeleteTileCommand(Guid campaign, Guid mapName, Tile tile, string userId) : base(campaign, mapName, userId)
{
Tile = tile;
}
}
}