sledgemapper/Sledgemapper.Api/Notifications/DeleteTileNotification.cs
2020-11-17 00:01:21 +00:00

14 lines
350 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, int userId) : base(sessionName, userId)
{
Tile = tile;
}
}
}