using System; using System.Collections.Generic; namespace ErrorAnalysis.Repository.Entity; public partial class SIGFarResultTable { public string ID { get; set; } = null!; public string ModelID { get; set; } = null!; public int Porosity { get; set; } public int? Sw { get; set; } public string? InelasticSpec { get; set; } public string? Capture1Spec { get; set; } public string? Capture2Spec { get; set; } public string? TimeSpec { get; set; } public decimal? CInelasticSpec { get; set; } public string? CCapture1Spec { get; set; } public string? CCapture2Spec { get; set; } }