
export interface PropertyCard {
  type?: 'unit' | 'project';
  id: number;
  title: string;
  subtitle: string;
  image: string;
  badge: string;
  price: string;
  area: number;
  bedrooms: number;
  bathrooms: number;
  floors: number;
  company: string;
  clientType?: string;
  propertyType?: string;
  companyLogo: string;
  companyTitle?: string;
  isFavorite: boolean;
  section: string;
  rawSection?: string;
  rawPropertyType?: string;
  categoryTitles?: string[];
  livingRooms?: number;
  projectsno?: string;
  latitude?: number;
  longitude?: number;
}