using kehati.Models; namespace kehati.Models; public class HomeViewModel { public string Query { get; set; } = ""; public string Type { get; set; } = ""; public string Status { get; set; } = ""; public string lokasi { get; set; } = ""; public string Results { get; set; } = ""; public StatistikHomeModel Statistik { get; set; } = new(); public LokasiModel Location { get; set; } = new(); public List FeaturedLocations { get; set; } = new(); public List FeaturedSpesies { get; set; } = new(); public List ConservationStatuses { get; set; } = new(); }