10 lines
209 B
C#
10 lines
209 B
C#
namespace ZB.MOM.WW.OtOpcUa.Configuration.Enums;
|
|
|
|
/// <summary>Per-node redundancy role within a cluster. Per decision #84.</summary>
|
|
public enum RedundancyRole
|
|
{
|
|
Primary,
|
|
Secondary,
|
|
Standalone,
|
|
}
|