sledgemapper/Sledgemapper.Api/Notifications/NewNoteNotification.cs
2020-12-03 19:38:03 +00:00

14 lines
349 B
C#

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