sledgemapper/Sledgemapper.Api/Notifications/NewOverlayNotification.cs
2020-11-08 23:48:15 +00:00

14 lines
348 B
C#

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