Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
14 lines
524 B
C#
14 lines
524 B
C#
namespace FrostFS.SDK.Client;
|
|
|
|
public sealed class PrmContainerDelete(FrostFsContainerId containerId, CallContext? ctx = null) : PrmBase(ctx), ISessionToken
|
|
{
|
|
public FrostFsContainerId ContainerId { get; set; } = containerId;
|
|
|
|
/// <summary>
|
|
/// Since the container is removed with some delay, it needs to poll the container status
|
|
/// </summary>
|
|
/// <value>Rules for polling the result</value>
|
|
public PrmWait? WaitParams { get; set; }
|
|
|
|
public FrostFsSessionToken? SessionToken { get; set; }
|
|
}
|