7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
export type ProjectType = {
|
|
id: number;
|
|
name: string;
|
|
detail: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}; |