Added group for the right side panel and improved get post patch delete ui for requests

This commit is contained in:
Ankitkumar Satapara
2026-04-18 23:55:40 +05:30
parent 9c3241cea4
commit 1eb917b450
7 changed files with 194 additions and 33 deletions

View File

@@ -0,0 +1,8 @@
namespace Nodify.Calculator
{
public class SwaggerGroupViewModel
{
public string GroupName { get; set; } = string.Empty;
public NodifyObservableCollection<OperationInfoViewModel> Operations { get; set; } = new NodifyObservableCollection<OperationInfoViewModel>();
}
}

View File

@@ -10,5 +10,6 @@ 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 SwaggerGroup { get; set; } = string.Empty;
}
}