import { DataType } from '../../PredefinedConfig/Common/Enums'; import { TypeUuid } from '../../PredefinedConfig/Uuid'; export interface IColumn { Uuid?: TypeUuid; ColumnId: string; FriendlyName: string; DataType: DataType; Visible: boolean; ReadOnly: boolean; Sortable: boolean; Filterable: boolean; }