ScpiTagObj.cs 331 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Uestc.Auto6.Dso.Scpi
  8. {
  9. internal record ScpiTagObj(object PrsntObj=null, string PropertyName="",List<string> ParamList=null,long IntOrDoubleMultiplier=1,object Tag=null);
  10. }