sledgemapper/Sledgemapper.Api/Notifications/DeleteTileNotification.cs
2020-11-08 23:48:15 +00:00

14 lines
330 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Handlers
{
public class DeleteTileNotification : BaseNotification
{
public Tile Tile { get; private set; }
public DeleteTileNotification(string sessionName, Tile tile) : base(sessionName)
{
Tile = tile;
}
}
}