Implemented post patch and put call body to be able to parse from model
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-22 18:02:06 +05:30
parent 9a9202e373
commit 5c61fa1e53
6 changed files with 142 additions and 5 deletions

View File

@@ -26,6 +26,7 @@ namespace Nodify.Calculator.Models
// API node properties
public string OPType { get; set; } = string.Empty;
public string ResponseModelClassName { get; set; } = string.Empty;
public string RequestBodyModelClassName { get; set; } = string.Empty;
// System node properties
public string SystemOp { get; set; } = string.Empty;

View File

@@ -10,6 +10,7 @@ namespace Nodify.Calculator.Models
public List<string> InputNames { get; set; } = new List<string>();
public string SwaggerFileName { get; set; } = string.Empty;
public string ResponseModelClassName { get; set; } = string.Empty;
public string RequestBodyModelClassName { get; set; } = string.Empty;
public string SwaggerGroup { get; set; } = string.Empty;
}
}