forked from ddrilling/AsbCloudServer
12 lines
271 B
C#
12 lines
271 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
|
|
public class WellDto : WellInfoDto, IMapPoint
|
|
{
|
|
public int Id { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
public string WellType { get; set; }
|
|
}
|
|
}
|