All checks were successful
DCO / DCO (pull_request) Successful in 43s
Signed-off-by: Pavel Gross <p.gross@yando.com>
14 lines
376 B
C#
14 lines
376 B
C#
using System.Collections.Specialized;
|
|
|
|
namespace FrostFS.SDK.ClientV2.Parameters;
|
|
|
|
public sealed class PrmNetworkSettings(Context? context = default) : IContext
|
|
{
|
|
/// <summary>
|
|
/// FrostFS request X-Headers
|
|
/// </summary>
|
|
public NameValueCollection XHeaders { get; set; } = [];
|
|
|
|
/// <inheritdoc />
|
|
public Context? Context { get; set; } = context;
|
|
}
|