DD.WellWorkover.Cloud/AsbCloudDb/Model/IMapPoint.cs

16 lines
274 B
C#
Raw Normal View History

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