first iteration - base classes and methods Signed-off-by: Pavel Gross <p.gross@yadro.com>
6 lines
173 B
C#
6 lines
173 B
C#
namespace FrostFS.SDK.ClientV2;
|
|
|
|
internal class ContextAccessor(EnvironmentContext context)
|
|
{
|
|
protected EnvironmentContext EnvironmentContext { get; set; } = context;
|
|
}
|