using System.Collections.ObjectModel; namespace FrostFS.SDK.ClientV2; public sealed class Statistic { public ulong OverallErrors { get; internal set; } public Collection Nodes { get; } = []; public string[]? CurrentNodes { get; internal set; } }