14 lines
338 B
C#
14 lines
338 B
C#
using Sledgemapper.Shared.Entities;
|
|
|
|
namespace Sledgemapper.Api.Commands
|
|
{
|
|
public class NewLineCommand : BaseCommand<bool>
|
|
{
|
|
public Line Line { get; private set; }
|
|
|
|
public NewLineCommand(string sessionName, Line line, string userId) : base(sessionName, userId)
|
|
{
|
|
Line = line;
|
|
}
|
|
}
|
|
}
|