sledgemapper/Sledgemapper.Api/Commands/DeleteNoteCommand.cs
Michele Scandura 1759f7cd8e bug fixes
2020-12-08 16:34:02 +00:00

14 lines
341 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, int userId) : base(sessionName, userId)
{
Note = note;
}
}
}