sledgemapper/Sledgemapper.Api/Notifications/NewSessionNotification.cs
2020-11-17 00:01:21 +00:00

9 lines
No EOL
227 B
C#

namespace Sledgemapper.Api.Handlers
{
public class NewSessionNotification : BaseNotification
{
public NewSessionNotification(string sessionName, int userId) : base(sessionName, userId)
{}
}
}