12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.TwinCat
- {
- public class BeckhoffAOAccessor : BeckhoffIOAccessor<double>
- {
- public BeckhoffAOAccessor(string name, string address, string scaling, string dataType) : base(name, address, scaling, dataType)
- {
- }
- }
- }
|