Files
ScadaBridge/src/ZB.MOM.WW.ScadaBridge.DelmiaNotifier/RecipeDownload.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

23 lines
888 B
C#

namespace ZB.MOM.WW.ScadaBridge.DelmiaNotifier;
internal sealed class RecipeDownload
{
/// <summary>Identifier of the machine the recipe is being downloaded to.</summary>
public string? MachineCode { get; set; }
/// <summary>Filesystem/network path the recipe should be downloaded into.</summary>
public string? DownloadPath { get; set; }
/// <summary>DELMIA work order number the recipe download is associated with.</summary>
public string? WorkOrderNumber { get; set; }
/// <summary>Part number the recipe applies to.</summary>
public string? PartNumber { get; set; }
/// <summary>Job step number within the work order the recipe download corresponds to.</summary>
public string? JobStepNumber { get; set; }
/// <summary>Username of the operator that triggered the recipe download.</summary>
public string? Username { get; set; }
}