sledgemapper/Sledgemapper.Api/Notifications/NewSessionNotification.cs
2020-11-20 23:43:33 +00:00

8 lines
No EOL
262 B
C#

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