20220510_191_upperpc/AutomaticApp/Models/ADCPDetails.cs
2023-07-27 10:57:34 +08:00

19 lines
371 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomaticApp.TestModels
{
public class ADCPDetails
{
/// <summary>
/// 海流计详细信息输出
/// </summary>
public string Name { get; set; }
public string OrderNum { get; set; }
}
}