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