Sic.Framework/MECF.Framework.RT.Equipment.../HardwareUnits/MfcCalculation/NameValue.cs

16 lines
368 B
C#
Raw Normal View History

2023-05-18 19:07:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-05-19 09:56:55 +08:00
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.MfcCalculation
2023-05-18 19:07:16 +08:00
{
public class NameValue
{
public string Name { get; set; }
public double Value { get; set; }
2023-05-18 19:07:16 +08:00
public string ControlName { get; set; }
}
}