import { IDataStructure } from './index'; /** * File interface for Upload Control */ export interface IFileDataStructure extends IDataStructure { FileDataBinary: any; Name: string; Type: string; Size: number; ActionDate: Date; getFileSizeToMB(): string; }