using System.Collections.Generic; namespace FrostFS.SDK.ClientV2; public class NetworkSettings { public ulong AuditFee { get; internal set; } public ulong BasicIncomeRate { get; internal set; } public ulong ContainerFee { get; internal set; } public ulong ContainerAliasFee { get; internal set; } public ulong EpochDuration { get; internal set; } public ulong InnerRingCandidateFee { get; internal set; } public ulong MaxObjectSize { get; internal set; } public ulong MaxECDataCount { get; internal set; } public ulong MaxECParityCount { get; internal set; } public ulong WithdrawFee { get; internal set; } public bool HomomorphicHashingDisabled { get; internal set; } public bool MaintenanceModeAllowed { get; internal set; } public Dictionary UnnamedSettings { get; } = []; }