docs+ui: backfill XML doc comments and finish dashboard layout pass

Adds missing <summary>/<param> XML docs across 99 server, worker, and test
files so CommentChecker reports zero issues (TreatWarningsAsErrors needs the
analyzer clean). Bundles in WIP dashboard work: NavSection extraction,
MainLayout/site.css/js styling alignment, and DashboardOptions/Auth tweaks.
This commit is contained in:
Joseph Doherty
2026-05-27 14:20:10 -04:00
parent 382861c602
commit 615b487a77
110 changed files with 1473 additions and 192 deletions
@@ -9,18 +9,32 @@ namespace ZB.MOM.WW.MxGateway.Worker.MxAccess;
/// </summary>
public sealed class MxAlarmSnapshotRecord
{
/// <summary>Gets or sets the unique alarm identifier.</summary>
public Guid AlarmGuid { get; set; }
/// <summary>Gets or sets the UTC timestamp of the transition.</summary>
public DateTime TransitionTimestampUtc { get; set; }
/// <summary>Gets or sets the provider node name.</summary>
public string ProviderNode { get; set; } = string.Empty;
/// <summary>Gets or sets the provider name.</summary>
public string ProviderName { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm group.</summary>
public string Group { get; set; } = string.Empty;
/// <summary>Gets or sets the tag name.</summary>
public string TagName { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm type.</summary>
public string Type { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm value.</summary>
public string Value { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm limit.</summary>
public string Limit { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm priority.</summary>
public int Priority { get; set; }
/// <summary>Gets or sets the alarm state.</summary>
public MxAlarmStateKind State { get; set; }
/// <summary>Gets or sets the operator node name.</summary>
public string OperatorNode { get; set; } = string.Empty;
/// <summary>Gets or sets the operator name.</summary>
public string OperatorName { get; set; } = string.Empty;
/// <summary>Gets or sets the alarm comment.</summary>
public string AlarmComment { get; set; } = string.Empty;
}