Files
2024-04-22 16:48:36 +02:00

15 lines
376 B
C#

using System.Text.Json.Serialization;
namespace MonkeyFinder.Model;
public class Monkey
{
public string Name { get; set; }
public string Location { get; set; }
public string Details { get; set; }
public string Image { get; set; }
public int Population { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
}