All checks were successful
DCO / DCO (pull_request) Successful in 50s
Signed-off-by: Pavel Gross <p.gross@yadro.com>
21 lines
No EOL
848 B
C#
21 lines
No EOL
848 B
C#
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<string, object> UnnamedSettings { get; } = [];
|
|
} |