sledgemapper/Sledgemapper.Api/Commands/NewTileCommand.cs
Michele Scandura af441e772b cleanup
2020-11-18 11:09:26 +00:00

13 lines
334 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Commands
{
public class NewTileCommand : BaseCommand<bool>
{
public Tile Tile { get; private set; }
public NewTileCommand(string sessionName, Tile tile, int userId) : base(sessionName, userId)
{
Tile = tile;
}
}
}