sledgemapper/Sledgemapper.Api/Notifications/NewLineNotification.cs
2021-01-14 23:34:24 +00:00

14 lines
349 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Notifications
{
public class NewLineNotification : BaseNotification
{
public Line Line { get; private set; }
public NewLineNotification(Models.Session session, Line line, int userId) : base(session, userId)
{
Line = line;
}
}
}