15 lines
464 B
TypeScript
15 lines
464 B
TypeScript
// src/types/crm.ts
|
|
export interface CrmProject {
|
|
name: string; // e.g. PROJ-0008
|
|
project_name: string; // display title
|
|
status?: string; // "Open" | ...
|
|
percent_complete?: number;
|
|
owner?: string;
|
|
modified?: string; // ISO or "YYYY-MM-DD HH:mm:ss"
|
|
customer?: string;
|
|
project_type?: string;
|
|
custom_address?: string | null;
|
|
custom_email?: string | null;
|
|
custom_mobile_phone_no?: string | null;
|
|
}
|