using System.Collections.Specialized; namespace FrostFS.SDK.ClientV2; public class PrmBase(CallContext? ctx, NameValueCollection? xheaders = null) : IContext { /// /// FrostFS request X-Headers /// public NameValueCollection XHeaders { get; } = xheaders ?? []; /// public CallContext Context { get; } = ctx ?? new CallContext(); }