sledgemapper/Sledgemapper.Api/Notifications/DeleteWallNotification.cs
2020-11-17 00:01:21 +00:00

14 lines
350 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Handlers
{
public class DeleteWallNotification : BaseNotification
{
public Wall Wall { get; private set; }
public DeleteWallNotification(string sessionName, Wall wall, int userId) : base(sessionName, userId)
{
Wall = wall;
}
}
}