kehati/Models/HomeViewModel.cs

17 lines
574 B
C#

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 List<LokasiModel> FeaturedLocations { get; set; } = new();
public List<SpesiesModel> FeaturedSpesies { get; set; } = new();
public List<string> ConservationStatuses { get; set; } = new();
}