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

14 lines
349 B
C#

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