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