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

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