You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
339 B
C#

namespace OPCDA.NET
{
using System;
using System.Xml;
[Serializable]
public class ItemList
{
public bool ActiveState;
public bool ActiveStateSpecified;
public ItemDefinition[] items;
public string name;
public XmlQualifiedName ReqType;
public ListType type;
}
}