This commit is contained in:
@@ -7,14 +7,18 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
public class CustomerNote: ICoreBizObjectModel
|
||||
public class CustomerNote : ICoreBizObjectModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
[Required]
|
||||
public long CustomerId { get; set; }
|
||||
[NotMapped]
|
||||
public string CustomerViz { get; set; }
|
||||
[Required]
|
||||
public long UserId { get; set; }
|
||||
[NotMapped]
|
||||
public string UserViz { get; set; }
|
||||
[Required]
|
||||
public DateTime NoteDate { get; set; }
|
||||
public string Notes { get; set; }
|
||||
@@ -35,7 +39,7 @@ namespace AyaNova.Models
|
||||
|
||||
[JsonIgnore]
|
||||
public User User { get; set; }
|
||||
|
||||
|
||||
string ICoreBizObjectModel.CustomFields { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
||||
}//eoc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user