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