export type Listing = {
  id: string;
  title: string;
  price: number;
  seller: string;
  image: string;
  category: string;
  condition: 'New with tags' | 'Excellent' | 'Very Good' | 'Good';
  location: string;
  likes: number;
  description: string;
};

export type Message = {
  id: string;
  from: string;
  preview: string;
  unread: number;
  listingTitle: string;
  timestamp: string;
};

export type Order = {
  id: string;
  item: string;
  buyer: string;
  seller: string;
  total: number;
  status: 'Awaiting Payment' | 'Paid' | 'Processing' | 'Dispatched' | 'Delivered';
};

export type Ticket = {
  id: string;
  subject: string;
  linkedTo: string;
  status: 'Open' | 'Awaiting Support' | 'Awaiting User' | 'Resolved';
  priority: 'Low' | 'Medium' | 'High';
};
