21 lines
No EOL
920 B
C#
21 lines
No EOL
920 B
C#
using System.Collections.Generic;
|
|
|
|
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public class NetworkSettings
|
|
{
|
|
public ulong ContainerFee { get; internal set; }
|
|
public ulong ContainerAliasFee { get; internal set; }
|
|
public ulong InnerRingCandidateFee { get; internal set; }
|
|
public ulong WithdrawFee { get; internal set; }
|
|
public ulong EpochDuration { get; internal set; }
|
|
public ulong IRCandidateFee { get; internal set; }
|
|
public ulong MaxObjectSize { get; internal set; }
|
|
public ulong MaxECDataCount { get; internal set; }
|
|
public ulong MaxECParityCount { get; internal set; }
|
|
public ulong WithdrawalFee { get; internal set; }
|
|
public bool HomomorphicHashingDisabled { get; internal set; }
|
|
public bool MaintenanceModeAllowed { get; internal set; }
|
|
|
|
public Dictionary<string, object> UnnamedSettings { get; } = [];
|
|
} |