This commit is contained in:
parent
17d6cd28d6
commit
7e3e645fc9
48 changed files with 1530 additions and 1538 deletions
|
@ -1,12 +1,13 @@
|
|||
using System;
|
||||
using Sledgemapper.Shared.Entities;
|
||||
|
||||
namespace Sledgemapper.Api.Commands
|
||||
{
|
||||
public class DeleteOverlayCommand : BaseCommand<bool>
|
||||
public class DeleteOverlayCommand : BaseCommand<bool>
|
||||
{
|
||||
public Overlay Overlay { get; private set; }
|
||||
|
||||
public DeleteOverlayCommand(string sessionName, Overlay overlay, string userId) : base(sessionName, userId)
|
||||
public DeleteOverlayCommand(Guid campaign, Guid mapName, Overlay overlay, string userId) : base(campaign, mapName, userId)
|
||||
{
|
||||
Overlay = overlay;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue