diff --git a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableQuestionAnswer.cs b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableQuestionAnswer.cs index 8fdc622dd..87957982f 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableQuestionAnswer.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableQuestionAnswer.cs @@ -63,8 +63,7 @@ namespace IRaCIS.Core.Domain.Models public Guid RowId { get; set; } - public Guid UpdateUserId { get; set; } - //string UpdateUserName { get; set; } + public Guid UpdateUserId { get; set; } public DateTime UpdateTime { get; set; } public bool IsDeleted { get; set; } @@ -74,6 +73,12 @@ namespace IRaCIS.Core.Domain.Models public Guid? DeleteUserId { get; set; } + [JsonIgnore] + [ForeignKey("RowId")] + + public ReadingTableAnswerRowInfo Lesion { get; set; } + + [JsonIgnore] [ForeignKey("QuestionId")]