This commit is contained in:
2020-12-01 00:41:43 +00:00
parent 0ae872f50b
commit 9a5de24cf4
2 changed files with 4 additions and 2 deletions

View File

@@ -115,6 +115,7 @@ namespace AyaNova.Biz
OpsNotificationSettings = 56,
Report = 57,
DashboardView=58,
[CoreBizObject]
CustomerNote = 59

View File

@@ -7,7 +7,7 @@ using Newtonsoft.Json;
namespace AyaNova.Models
{
public class CustomerNote
public class CustomerNote: ICoreBizObjectModel
{
public long Id { get; set; }
public uint Concurrency { get; set; }
@@ -35,7 +35,8 @@ namespace AyaNova.Models
[JsonIgnore]
public User User { get; set; }
string ICoreBizObjectModel.CustomFields { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
}//eoc
}//eons