6 lines
174 B
TypeScript
6 lines
174 B
TypeScript
import type { AutomationResultDTO } from './AutomationResultDTO';
|
|
|
|
export interface FormFillResultDTO extends AutomationResultDTO {
|
|
fieldName: string;
|
|
valueSet: string;
|
|
} |