14 lines
352 B
C#
14 lines
352 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, string userId) : base(session, userId)
|
|
{
|
|
Line = line;
|
|
}
|
|
}
|
|
}
|