12 lines
No EOL
265 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
|
|
} |