feat(delmia-notifier): recipe DTOs + JSON source-gen context

This commit is contained in:
Joseph Doherty
2026-06-26 05:10:23 -04:00
parent 069881ac9b
commit 82bde9693e
4 changed files with 52 additions and 0 deletions
@@ -0,0 +1,11 @@
namespace ZB.MOM.WW.ScadaBridge.DelmiaNotifier;
internal sealed class RecipeDownload
{
public string? MachineCode { get; set; }
public string? DownloadPath { get; set; }
public string? WorkOrderNumber { get; set; }
public string? PartNumber { get; set; }
public string? JobStepNumber { get; set; }
public string? Username { get; set; }
}