using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.MfcCalculation { public class NameValue { public string Name { get; set; } public double Value { get; set; } public string ControlName { get; set; } } }