namespace ZB.MOM.WW.LmxOpcUa.Client.Shared.Models;
///
/// Transport security mode for the OPC UA connection.
///
public enum SecurityMode
{
/// No transport security.
None,
/// Messages are signed but not encrypted.
Sign,
/// Messages are signed and encrypted.
SignAndEncrypt
}