20230614_SZLS_upperpc/NTADCP/ADCP.cs
2023-07-24 15:35:05 +08:00

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