web browser
This commit is contained in:
27
PacticeSolution/MapFinder/Data/FoundLocale.cs
Normal file
27
PacticeSolution/MapFinder/Data/FoundLocale.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user