Files
pp-tcms/frontend/types/project.ts
2024-03-27 23:40:46 +09:00

7 lines
120 B
TypeScript

export type ProjectType = {
id: number;
name: string;
detail: string;
createdAt: string;
updatedAt: string;
};