export declare class UploadFileDTO {
    constructor();
    id?: string;
    object?: string;
    objectId?: string;
    type?: string;
    file?: string;
    size: number;
    name?: string;
    tag?: string;
    notes?: string;
    thumbnail?: string;
    created?: Date;
}
