import { BaseModel } from './base'; export interface FormValues extends BaseModel { EntityValues: EntityValues[]; IsValid: boolean; AllowAnonymous: boolean; URL: string; Duration: number; ExpiryDate: Date; Name: string; } export interface EntityValues { IsValid: boolean; EntityName: string; }