using Sledgemapper.Shared.Entities; namespace Sledgemapper.Api.Handlers { public class DeleteOverlayNotification : BaseNotification { public Overlay Overlay { get; private set; } public DeleteOverlayNotification(string sessionName, Overlay overlay, int userId) : base(sessionName, userId) { Overlay = overlay; } } }