namespace ZB.MOM.WW.OtOpcUa.Host.Domain
{
///
/// Maps a deployed Galaxy platform to the hostname where it executes.
///
public class PlatformInfo
{
///
/// Gets or sets the gobject_id of the platform object in the Galaxy repository.
///
public int GobjectId { get; set; }
///
/// Gets or sets the hostname (node_name) where the platform is deployed.
///
public string NodeName { get; set; } = "";
}
}