26 lines
692 B
C#
26 lines
692 B
C#
namespace line_gestao_api.Models;
|
|
|
|
public class ImportAuditIssue : ITenantEntity
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public Guid AuditRunId { get; set; }
|
|
public ImportAuditRun AuditRun { get; set; } = default!;
|
|
|
|
public string Entity { get; set; } = string.Empty;
|
|
|
|
public string FieldName { get; set; } = string.Empty;
|
|
|
|
public string? SourceValue { get; set; }
|
|
|
|
public string CanonicalValue { get; set; } = string.Empty;
|
|
|
|
public string Resolution { get; set; } = "OVERRIDDEN_BY_GERAL";
|
|
|
|
public string Severity { get; set; } = "WARNING";
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
}
|