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