14 lines
350 B
C#
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;
|
|
}
|
|
}
|
|
}
|