123456789101112131415161718192021222324252627282930313233343536373839 |
-
- using WingAIDiagnosisService.Carotid.Utilities;
- using WingAIDiagnosisService.Carotid.Utilities.DetectPlaque;
- namespace WingAIDiagnosisService.Carotid
- {
-
-
-
- public class CarotidAIMeasureResult
- {
-
-
-
- public DetectIntimaResult IntimaResult { get; set; }
-
-
-
- public DetectPlaqueResult PlaqueResult { get; set; }
-
-
-
- public bool IsYImageSuccess { get; set; }
- public CarotidAIMeasureResult() { }
- public CarotidAIMeasureResult(DetectIntimaResult antIntima, DetectPlaqueResult plaque, bool isYImageSuccess)
- {
- IntimaResult = antIntima;
- PlaqueResult = plaque;
- IsYImageSuccess = isYImageSuccess;
- }
- }
- }
|