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

14 lines
344 B
C#

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