forked from ddrilling/AsbCloudServer
11 lines
299 B
C#
11 lines
299 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class WellUpdateParamsDto
|
|
{
|
|
public string Caption { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
public int IdWellType { get; set; }
|
|
public int State { get; set; }
|
|
}
|
|
} |