sledgemapper/Sledgemapper.Api/Notifications/DeleteOverlayNotification.cs
Michele Scandura af441e772b cleanup
2020-11-18 11:09:26 +00:00

19 lines
552 B
C#

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