sledgemapper/Sledgemapper.Api/Commands/NewSessionCommand.cs
Michele Scandura 195533bce0
All checks were successful
continuous-integration/drone/push Build is passing
migrating session/map it to guid.
2021-09-16 16:51:07 +01:00

10 lines
No EOL
250 B
C#

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