using Sledgemapper.Shared.Entities; namespace Sledgemapper.Api.Commands { public class NewLineCommand : BaseCommand { public Line Line { get; private set; } public NewLineCommand(string sessionName, Line line, string userId) : base(sessionName, userId) { Line = line; } } }