using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.Windturbine { /// /// 参数对比参数信息 /// public class ParameterInfo { /// /// 参数名称 /// public string Name { get; set; } /// /// 参数uniform code /// public string Code { get; set; } } }