import { BaseModel } from './base'; import { FormEntity } from './FormEntity'; export interface Form extends BaseModel { Entities: FormEntity[]; IsValid: boolean; AllowAnonymous: boolean; Workflow: string; URL: string; Duration: number; ExpiryDate: Date; Name: string; FormValuesModified: boolean; }