forked from ddrilling/AsbCloudServer
eab95cb7a1
Add State and LastTelemetryDate into StatWellDto.
11 lines
295 B
C#
11 lines
295 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class WellParamsDto
|
|
{
|
|
public string Caption { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
public int IdWellType { get; set; }
|
|
public int IdState { get; set; }
|
|
}
|
|
} |