namespace Compliance.Domain.Models { public class ReadingImpedimentInfo { public string ImpedimentCode { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public DateTime ReportDate { get; set; } public string ReportedBy { get; set; } = string.Empty; public int ConsecutiveOccurrences { get; set; } public string? ResolutionAttempts { get; set; } public bool RequiresCustomerAction { get; set; } public DateTime? CustomerNotificationDate { get; set; } public string? AlternativeReadingMethod { get; set; } public List PhotoEvidence { get; set; } = []; } }