sledgemapper/Sledgemapper.Api/Commands/NewOverlayCommand.cs
Michele Scandura 9abe30904f
All checks were successful
continuous-integration/drone/push Build is passing
full flow with overlays
2021-09-17 10:53:03 +01:00

15 lines
391 B
C#

using Sledgemapper.Shared.Entities;
using System;
namespace Sledgemapper.Api.Commands
{
public class NewOverlayCommand : BaseCommand<bool>
{
public Overlay Overlay { get; private set; }
public NewOverlayCommand(Guid campaignId, Guid mapId, Overlay overlay, string userId) : base(campaignId, mapId, userId)
{
Overlay = overlay;
}
}
}