16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { ProjectSchema } from './ProjectSchema';
|
|
import type { StatusSchema } from './StatusSchema';
|
|
export type BoardSchema = {
|
|
name: string;
|
|
projectId: number;
|
|
id: number;
|
|
ordinalNumber: number;
|
|
dealStatuses: Array<StatusSchema>;
|
|
project: ProjectSchema;
|
|
};
|
|
|