20 lines
533 B
C#
20 lines
533 B
C#
namespace kehati.Models.View;
|
|
|
|
public class SpesiesModel
|
|
{
|
|
public string Slug { get; set; } = "";
|
|
|
|
public string Image { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public string Habitat { get; set; } = "";
|
|
|
|
public string CommonName { get; set; } = "";
|
|
|
|
public string ScientificName { get; set; } = "";
|
|
|
|
public string Type { get; set; } = ""; // Flora / Fauna
|
|
|
|
public string ConservationStatus { get; set; } = "";
|
|
public List<string> LocationSlugs { get; set; } = new();
|
|
|
|
} |