14 lines
312 B
C#
14 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Locations.API.ViewModel
|
|
{
|
|
public class LocationRequest
|
|
{
|
|
public double Longitude { get; set; }
|
|
public double Latitude { get; set; }
|
|
}
|
|
}
|