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

18 lines
511 B
C#

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