web browser

This commit is contained in:
2023-06-19 16:27:10 +09:00
parent e7c5f66c1b
commit 46000134f6
10 changed files with 230 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MapFinder.Data
{
class FoundLocale
{
internal string Name { get; private set; }
internal double Lng { get; private set; }
internal double Lat { get; private set; }
public FoundLocale(string name, double lng, double lat)
{
this.Name = name;
this.Lng = lng;
this.Lat = lat;
}
public override string ToString()
{
return this.Name;
}
}
}