sledgemapper/Sledgemapper.Api/Commands/DeleteNoteCommand.cs
Michele 4c345bd044
All checks were successful
continuous-integration/drone/push Build is passing
tentative campaign map management
2021-08-30 23:30:04 +01:00

14 lines
344 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Commands
{
public class DeleteNoteCommand : BaseCommand<bool>
{
public Note Note { get; private set; }
public DeleteNoteCommand(string sessionName, Note note, string userId) : base(sessionName, userId)
{
Note = note;
}
}
}