export interface PropertyCard {
  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;
  projectsno: string;
  companyLogo: string;
  isFavorite: boolean;
}
