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