sledgemapper/Sledgemapper.Api/Notifications/DeleteTileNotification.cs
Michele 4c345bd044
All checks were successful
continuous-integration/drone/push Build is passing
tentative campaign map management
2021-08-30 23:30:04 +01:00

14 lines
358 B
C#

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