export type ColumnType = "Customer" | "Submission";
export interface IColumnModelAttributes<T> {
    _id: string;
    status: string;
    name: string;
    type: ColumnType;
    contents: T[];
}
