import { DataType } from './DataType'; export interface FormProperty { Name: string; DataType: DataType; MaxValue: number; MinValue: number; IsRequired: boolean; IsReadOnly: boolean; DefaultValue: any; Value: any; Options: string; PropertyName: string; Id: string; id: string | number; }