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