type ID = string;
export interface ModuleInput {
id: string;
propertyName: string;
}
export interface ModuleInputSection {
children?: ModuleInput[];
export interface Module {
id: ID;
name: string;
packageId: ID;
inputsForm: ModuleInputSection[];