16 lines
401 B
C#
16 lines
401 B
C#
using System.Collections.Specialized;
|
|
|
|
namespace FrostFS.SDK.ClientV2.Parameters;
|
|
|
|
public sealed class PrmContainerGetAll() : IContext
|
|
{
|
|
public string SessionToken { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// FrostFS request X-Headers
|
|
/// </summary>
|
|
public NameValueCollection XHeaders { get; set; } = [];
|
|
|
|
/// <inheritdoc />
|
|
public Context? Context { get; set; }
|
|
}
|