5a878b78d4
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
23 lines
888 B
C#
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; }
|
|
}
|