sledgemapper/Sledgemapper.Api/Commands/NewSessionCommand.cs
Michele Scandura 1ae0ee5a8a rectoring
2020-11-13 21:38:36 +00:00

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;
}
}
}