14 lines
355 B
C#
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;
|
|
}
|
|
}
|
|
}
|