22 lines
444 B
C#
22 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NTADCP
|
|
{
|
|
public class ADCP
|
|
{
|
|
/// <summary>
|
|
/// 表面流速
|
|
/// </summary>
|
|
public float SurfaceVelocity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流速方向 0- 顺水 1 -迎水
|
|
/// </summary>
|
|
public float FlowDirection { get; set; } = 3;
|
|
}
|
|
}
|