sledgemapper/Sledgemapper.Api/Notifications/NewSessionNotification.cs
Michele Scandura af441e772b cleanup
2020-11-18 11:09:26 +00:00

9 lines
No EOL
232 B
C#

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