8 lines
No EOL
255 B
C#
8 lines
No EOL
255 B
C#
namespace Sledgemapper.Api.Handlers
|
|
{
|
|
public class NewSessionNotification : BaseNotification
|
|
{
|
|
public int UserId { get; }
|
|
public NewSessionNotification(string sessionName, int userId) : base(sessionName) => UserId = userId;
|
|
}
|
|
} |