frostfs-sdk-csharp/src/FrostFS.SDK.ClientV2/Parameters/PrmContainerGetAll.cs
Pavel Gross 3206abc33e [#18] Client: Rename parameters
Signed-off-by: Pavel Gross <p.gross@yando.com>
2024-07-25 12:28:38 +03:00

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; }
}