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

22 lines
561 B
C#

using Sledgemapper.Api.Models;
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;
}
public NewTileNotification(int sessionId, string sessionName, Tile tile, int userId) : base(sessionId, sessionName, userId)
{
Tile = tile;
}
}
}