14 lines
352 B
C#
14 lines
352 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, string userId) : base(session, userId)
|
|
{
|
|
Tile = tile;
|
|
}
|
|
}
|
|
}
|