using Sledgemapper.Shared.Entities; namespace Sledgemapper.Api.Notifications { public class DeleteOverlayNotification : BaseNotification { public Overlay Overlay { get; private set; } public DeleteOverlayNotification(Models.Session session, Overlay overlay, string userId) : base(session, userId) { Overlay = overlay; } } }