// Generic Item interface for PageTemplate
export interface Item {
    id: number | string;
    name: string;
    status: string;
    type: string;
    created_at: string;
    updated_at?: string;
    description?: string;
    is_active?: boolean;
    [key: string]: any; // For any additional properties
}
