using System; namespace IRaCIS.Core.Domain.Models { public class QADictionary : Entity { public Guid QARecordId { get; set; } public string Note { get; set; } public Guid DictionaryId { get; set; } public Guid TrialId { get; set; } public Guid SiteId { get; set; } } }