15 lines
376 B
C#
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; }
|
|
}
|