first iteration - base classes and methods Signed-off-by: Pavel Gross <p.gross@yadro.com>
16 lines
326 B
C#
16 lines
326 B
C#
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public class DialOptions
|
|
{
|
|
public bool Block { get; set; }
|
|
|
|
public bool ReturnLastError { get; set; }
|
|
|
|
public ulong Timeout { get; set; }
|
|
|
|
public string? Authority { get; set; }
|
|
|
|
public bool DisableRetry { get; set; }
|
|
|
|
public bool DisableHealthCheck { get; set; }
|
|
}
|