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.

20 lines
436 B
C#

namespace OPCDA
{
using System;
public class SrvStatus
{
public int BandWidth;
public short BuildNumber;
public DateTime CurrentTime;
public int GroupCount;
public DateTime LastUpdateTime;
public short MajorVersion;
public short MinorVersion;
public OpcServerState ServerState;
public DateTime StartTime;
public string VendorInfo;
}
}