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

14 lines
335 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, int userId) : base(sessionName, userId)
{
Line = line;
}
}
}