export interface Workflow { workflowName: string; workflowDescription?: string; uploadYn: "Y" | "N"; regUserId: string; regDt: string; modDt: string; projectId: number; } export interface WorkflowSearch { projectId: number; // ✅ 유일한 필수 page?: number; size?: number; keyword?: string; searchType?: "전체" | "제목" | "작성자"; startDate?: string; endDate?: string; sortField?: string; sortDirection?: "ASC" | "DESC"; }