sledgemapper/Sledgemapper.Api/Notifications/NewNoteNotification.cs
Michele Scandura 79edfcc4d3
All checks were successful
continuous-integration/drone/push Build is passing
error message, broken build
2021-09-21 16:53:04 +01:00

14 lines
345 B
C#

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