Add project files.
This commit is contained in:
14
MonkeyFinder/Model/Monkey.cs
Normal file
14
MonkeyFinder/Model/Monkey.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user