MoS2/Framework/MECF.Framework.RT.EquipmentLibrary/Devices/SicAds.cs

20 lines
413 B
C#
Raw Permalink Normal View History

2026-06-15 10:56:30 +08:00
using System.Xml;
namespace Aitex.Core.RT.Device.Devices
{
public class SicAds : TcAds
{
//public override string Address
//{
// get
// {
// return SC.GetStringValue("PM1.AdsIPAddr");
// }
//}
public SicAds(string module, XmlElement node, string ioModule = "") : base(module, node, ioModule)
{
}
}
}