Files
ScadaBridge/src/ZB.MOM.WW.ScadaBridge.DelmiaNotifier/RecipeDownloadResult.cs
T
Joseph Doherty 5a878b78d4 docs(xml): fill missing XML doc comments + strip task-tracking refs across src (fixdocs)
Add missing <summary>/<param>/<returns>/<typeparam> tags and switch
interface implementations to <inheritdoc/> across 106 files; strip
project bookkeeping identifiers (Task NN, #05-TNN, PLAN-04, StoreAndForward-0NN)
from shipped code comments while preserving the descriptive rationale.
Comment-only: zero code-logic lines changed; solution builds 0/0.

Claude-Session: https://claude.ai/code/session_01MtdgwpEeCUn6cUA5f1LMPj
2026-07-10 08:23:56 -04:00

12 lines
432 B
C#

namespace ZB.MOM.WW.ScadaBridge.DelmiaNotifier;
/// <summary>Deserialized response body from the Inbound API recipe-download call.</summary>
internal sealed class RecipeDownloadResult
{
/// <summary>Whether the recipe download succeeded.</summary>
public bool Result { get; set; }
/// <summary>Human-readable status/error text accompanying <see cref="Result"/>.</summary>
public string? ResultText { get; set; }
}