// MongoDB Category Model Schema
export interface Category {
  _id?: string;
  name: string;
  slug: string; // URL-friendly name
  description?: string;
  image?: string; // Category banner/image
  parentId?: string; // For subcategories
  order: number; // For sorting
  active: boolean;
  seo?: {
    metaTitle?: string;
    metaDescription?: string;
    metaKeywords?: string;
  };
  createdAt?: Date;
  updatedAt?: Date;
}

