/ src / settings-ui / Settings.UI.Library / Helpers / SearchLocation.cs
SearchLocation.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  using System;
 6  using System.Collections.Generic;
 7  using System.Linq;
 8  using System.Text;
 9  using System.Threading.Tasks;
10  
11  namespace Settings.UI.Library.Helpers
12  {
13      public class SearchLocation
14      {
15          public string City { get; set; }
16  
17          public string Country { get; set; }
18  
19          public double Latitude { get; set; }
20  
21          public double Longitude { get; set; }
22  
23          public SearchLocation(string city, string country, double latitude, double longitude)
24          {
25              City = city;
26              Country = country;
27              Latitude = latitude;
28              Longitude = longitude;
29          }
30      }
31  }