sledgemapper/Sledgemapper.Api/Commands/NewSessionCommand.cs
Michele Scandura 9abe30904f
All checks were successful
continuous-integration/drone/push Build is passing
full flow with overlays
2021-09-17 10:53:03 +01:00

12 lines
No EOL
265 B
C#

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