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; } } }