DD.WellWorkover.Cloud/AsbCloudApp/Data/IMapPoint.cs

15 lines
273 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsbCloudApp.Data
{
public interface IMapPoint
{
2021-07-21 15:22:58 +05:00
double? Latitude { get; set; }
double? Longitude { get; set; }
}
}