using MediatR; namespace Sledgemapper.Api.Commands { public class NewSessionCommand : BaseCommand { public NewSessionCommand(string sessionName, int userId):base(sessionName, userId) { } } }