sledgemapper/Sledgemapper.Api/Notifications/NewOverlayNotification.cs
Michele Scandura 49bde02544 cleanup
2020-11-19 16:51:11 +00:00

14 lines
373 B
C#

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, int userId) : base(session, userId)
{
Overlay = overlay;
}
}
}