SicMultiplate/Modules/Mainframe/Devices/SicAds.cs

21 lines
430 B
C#
Raw Normal View History

2023-03-03 15:42:13 +08:00
using System.Xml;
using Aitex.Core.RT.SCCore;
namespace Mainframe.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)
{
}
}
}