Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
8 lines
265 B
C#
8 lines
265 B
C#
namespace FrostFS.SDK.Client;
|
|
|
|
public sealed class PrmApeChainAdd(FrostFsChainTarget target, FrostFsChain chain, CallContext? ctx = null) : PrmBase(ctx)
|
|
{
|
|
public FrostFsChainTarget Target { get; } = target;
|
|
|
|
public FrostFsChain Chain { get; } = chain;
|
|
}
|