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