15 lines
No EOL
355 B
C#
15 lines
No EOL
355 B
C#
using MediatR;
|
|
|
|
namespace Sledgemapper.Api.Commands
|
|
{
|
|
public class NewSessionCommand : IRequest<bool>
|
|
{
|
|
public string SessionName { get; set; }
|
|
public int UserId { get; }
|
|
public NewSessionCommand(string sessionName, int userId)
|
|
{
|
|
SessionName = sessionName;
|
|
UserId = userId;
|
|
}
|
|
}
|
|
} |