16 lines
690 B
C#
16 lines
690 B
C#
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<string> PhotoEvidence { get; set; } = [];
|
|
}
|
|
} |