using System;

namespace IRaCIS.Core.Domain.Models
{
    public class ImageQA : Entity, IAuditAdd
    {
        public Guid TrialId { get; set; }
        public Guid SiteId { get; set; }
        public Guid StudyId { get; set; }
        public Guid ParentId { get; set; }
        public string CommunicationRecord { get; set; }
        public Guid CreateUserId { get; set; }
        public DateTime CreateTime { get; set; } = DateTime.Now;

    }
}