sledgemapper/Sledgemapper.Api/Notifications/DeleteWallNotification.cs
Michele Scandura af441e772b cleanup
2020-11-18 11:09:26 +00:00

19 lines
520 B
C#

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