using System.ComponentModel.DataAnnotations.Schema; namespace FindAndDrive.Domain.Models.Entities { public class ApplicantAuditLog { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid ApplicantAuditLogId { get; set; } public Guid ApplicantId { get; set; } public int TransUnionId { get; set; } public int ExperianId { get; set; } public Guid FindAndDriveId { get; set; } public DateTime TimeStamp { get; set; } public string AuditLog { get; set; } //Relationships with other entities public virtual Applicant Applicant { get; set; } } }