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

14 lines
349 B
C#

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