feat: projects and boards
This commit is contained in:
15
src/client/models/BoardSchema.ts
Normal file
15
src/client/models/BoardSchema.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
/* 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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user