// MongoDB Poster/Banner Model Schema
export interface Poster {
  _id?: string;
  title: string;
  description?: string;
  image: string; // Image URL
  link?: string; // Optional link when clicked
  position: string; // "home-top", "home-middle", "home-bottom", "shop-top", etc.
  active: boolean;
  order: number; // For sorting multiple posters
  startDate?: Date;
  endDate?: Date; // For time-based banners
  createdAt?: Date;
  updatedAt?: Date;
}

