Interface DBTable

interface DBTable {
    caption?: string;
    catalog?: string;
    columns?: DBColumn[];
    label?: string;
    name: string;
    visible?: boolean;
}

Hierarchy

Properties

caption?: string

Caption for entity

catalog?: string

Catalog of entity

columns?: DBColumn[]
label?: string

Deprecated

use caption

name: string
visible?: boolean

Visible Property

Generated using TypeDoc