sledgemapper/Sledgemapper.Api/Notifications/NewRoomNotification.cs
2021-01-14 23:34:24 +00:00

14 lines
349 B
C#

using Sledgemapper.Shared.Entities;
namespace Sledgemapper.Api.Notifications
{
public class NewRoomNotification : BaseNotification
{
public Room Room { get; private set; }
public NewRoomNotification(Models.Session session, Room room, int userId) : base(session, userId)
{
Room = room;
}
}
}