Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
14 lines
395 B
C#
14 lines
395 B
C#
using System.Collections.Specialized;
|
|
|
|
namespace FrostFS.SDK.Client;
|
|
|
|
public class PrmBase(CallContext? ctx, NameValueCollection? xheaders = null) : IContext
|
|
{
|
|
/// <summary>
|
|
/// FrostFS request X-Headers
|
|
/// </summary>
|
|
public NameValueCollection XHeaders { get; } = xheaders ?? [];
|
|
|
|
/// <inheritdoc />
|
|
public CallContext Context { get; } = ctx ?? new CallContext();
|
|
}
|