20230614_SZLS_upperpc/NTADCP/ADCP.cs

22 lines
444 B
C#
Raw Normal View History

2023-07-24 07:35:05 +00:00
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;
}
}