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

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