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