sledgemapper/Sledgemapper.Api/Commands/NewNoteCommand.cs
2020-12-03 19:38:03 +00:00

14 lines
335 B
C#

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