sledgemapper/Sledgemapper.Api/Commands/NewSessionCommand.cs

11 lines
No EOL
233 B
C#

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