sledgemapper/Sledgemapper.Api/Notifications/DeleteNoteNotification.cs
Michele Scandura 1759f7cd8e bug fixes
2020-12-08 16:34:02 +00:00

14 lines
355 B
C#

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