sledgemapper/Sledgemapper.Api/Notifications/DeleteWallNotification.cs
Michele Scandura 49bde02544 cleanup
2020-11-19 16:51:11 +00:00

14 lines
355 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, int userId) : base(session, userId)
{
Wall = wall;
}
}
}