From a6813d53a6a7d5350ce71040da7b4b2ebf135eb5 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 11 Jun 2021 16:59:38 +0000 Subject: [PATCH] --- server/AyaNova/models/CustomerNote.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/AyaNova/models/CustomerNote.cs b/server/AyaNova/models/CustomerNote.cs index 3b4a88de..6c7432f3 100644 --- a/server/AyaNova/models/CustomerNote.cs +++ b/server/AyaNova/models/CustomerNote.cs @@ -25,6 +25,11 @@ namespace AyaNova.Models public List Tags { get; set; } + //workaround for notification + [NotMapped, JsonIgnore] + public string Name { get; set; } + + public CustomerNote() { NoteDate = DateTime.UtcNow;