export interface SectionFamily { SectionFamilyId: number; SectionFamilyName: string; Description: string | null; SortOrder: number | null; IsActive: boolean; SectionCount?: number; } export interface Section { SectionId: number; SectionName: string; SectionFamilyId: number; SectionFamilyName: string; Description: string | null; SortOrder: number | null; IsActive: boolean; EntryCount?: number; } export interface TopSection extends Section { UsageCount: number; LastUsedTimestamp: Date | null; }