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

11 lines
299 B
C#
Raw Normal View History

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; }
}
}