cleanup
This commit is contained in:
parent
1b910adf55
commit
af441e772b
34 changed files with 279 additions and 292 deletions
14
Sledgemapper.Api/Commands/NewOverlayCommand.cs
Normal file
14
Sledgemapper.Api/Commands/NewOverlayCommand.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
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, int userId) : base(sessionName, userId)
|
||||
{
|
||||
Overlay = overlay;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue