13 lines
337 B
C#
13 lines
337 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, string userId) : base(sessionName, userId)
|
|
{
|
|
Tile = tile;
|
|
}
|
|
}
|
|
}
|