29 lines
651 B
C#
29 lines
651 B
C#
namespace MxGateway.Worker.MxAccess;
|
|
|
|
public sealed class RegisteredItemHandle
|
|
{
|
|
public RegisteredItemHandle(
|
|
int serverHandle,
|
|
int itemHandle,
|
|
string itemDefinition,
|
|
string itemContext,
|
|
bool hasItemContext)
|
|
{
|
|
ServerHandle = serverHandle;
|
|
ItemHandle = itemHandle;
|
|
ItemDefinition = itemDefinition;
|
|
ItemContext = itemContext;
|
|
HasItemContext = hasItemContext;
|
|
}
|
|
|
|
public int ServerHandle { get; }
|
|
|
|
public int ItemHandle { get; }
|
|
|
|
public string ItemDefinition { get; }
|
|
|
|
public string ItemContext { get; }
|
|
|
|
public bool HasItemContext { get; }
|
|
}
|