Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
12 lines
453 B
C#
12 lines
453 B
C#
namespace FrostFS.SDK.Client;
|
|
|
|
// NodeParam groups parameters of remote node.
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "CA1815:Override equals and operator equals on value types", Justification = "<Pending>")]
|
|
public readonly struct NodeParam(int priority, string address, float weight)
|
|
{
|
|
public int Priority { get; } = priority;
|
|
|
|
public string Address { get; } = address;
|
|
|
|
public float Weight { get; } = weight;
|
|
}
|