using ErrorAnalysis.Repository.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ErrorAnalysis.Service.Model { public class ErrorRatioResult { public COModelTable? COModel { get; set; } public List? ErrorRatios { get; set; } } public class ErrorRatio { public int Porosity { get; set; } public int Pass { get; set; } public double ErrorRatioValue { get; set; } } }