Interface AttachmentModel

interface AttachmentModel {
    description?: string;
    id: string;
    location: string;
    name: string;
    selectedFile: AttachmentRow;
    size?: number;
    type?: string;
    uploadedBy?: string;
}

Properties

description?: string
id: string
location: string
name: string
selectedFile: AttachmentRow
size?: number
type?: string
uploadedBy?: string