=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===

This commit is contained in:
julian
2026-06-28 02:50:05 -07:00
parent a19fb90902
commit 586f02a2ca
654 changed files with 5260 additions and 0 deletions
@@ -3,6 +3,7 @@
/// <summary>
/// Represents the configuration settings used to manage and configure providers within the application.
/// </summary>
/// <!-- aidoc:v1 sig=7fdd003 -->
public class ProvidersSettings
{
public string Name { get; set; } = string.Empty;
@@ -6,6 +6,7 @@
/// <remarks>
/// This class is intended to be inherited by concrete result model types that provide specific prediction logic for medication-related ADAS assessments.
/// </remarks>
/// <!-- aidoc:v1 sig=43f9384 -->
public abstract class ResultModelPredictMedicationAdas
{
public string MedicineIdentifier { get; set; } = string.Empty;
@@ -28,6 +29,7 @@ public abstract class ResultModelPredictMedicationAdas
/// Returns a string representation combining the medicine text and its degree of similarity, separated by a pipe character.
/// </summary>
/// <returns>A formatted string containing the <c>MedicineText</c> and <c>DegreeSimilarity</c> values joined by a pipe (<c>|</c>) separator.</returns>
/// <!-- aidoc:v1 sig=d27f326 body=1c1a8a5 -->
public override string ToString()
{
return $"{MedicineText} | {DegreeSimilarity}";
@@ -6,6 +6,7 @@
/// <remarks>
/// This type serves as a data container for prediction outcomes produced by the ADAS stay prediction process.
/// </remarks>
/// <!-- aidoc:v1 sig=c42766f -->
public class ResultModelPredictOfStayAdas
{
public string Result { get; set; } = string.Empty;
@@ -19,6 +20,7 @@ public class ResultModelPredictOfStayAdas
/// <remarks>
/// As an abstract class, <see cref="Payload"/> cannot be instantiated directly and must be extended by a concrete subclass.
/// </remarks>
/// <!-- aidoc:v1 sig=f182851 -->
public abstract class Payload
{
public double PercentageMin { get; set; }