@@ -46,4 +46,17 @@ export interface IYsProfileTemplate {
export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
businessID: string;
+}
+
+export interface IDynamicStep {
+ ID: string;
+ gatherID: string;
+ businessType: BusinessTypeKey;
+ stepID: string;
+ nextStepID: string;
+ executorID: boolean;
+export interface IGatherDynamicStep extends IDynamicStep {
+ businessID: string;
}