sledgemapper/Sledgemapper.Api/Notifications/DeleteTileNotification.cs
Michele Scandura 49bde02544 cleanup
2020-11-19 16:51:11 +00:00

14 lines
355 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Notifications
{
public class DeleteTileNotification : BaseNotification
{
public Tile Tile { get; private set; }
public DeleteTileNotification(Models.Session session, Tile tile, int userId) : base(session, userId)
{
Tile = tile;
}
}
}