14 lines
358 B
C#
14 lines
358 B
C#
using Sledgemapper.Shared.Entities;
|
|
|
|
namespace Sledgemapper.Api.Notifications
|
|
{
|
|
public class DeleteWallNotification : BaseNotification
|
|
{
|
|
public Wall Wall { get; private set; }
|
|
|
|
public DeleteWallNotification(Models.Session session, Wall wall, string userId) : base(session, userId)
|
|
{
|
|
Wall = wall;
|
|
}
|
|
}
|
|
}
|