namespace FrostFS.SDK.Client; public sealed class PrmContainerDelete(FrostFsContainerId containerId, CallContext? ctx = null) : PrmBase(ctx), ISessionToken { public FrostFsContainerId ContainerId { get; set; } = containerId; /// /// Since the container is removed with some delay, it needs to poll the container status /// /// Rules for polling the result public PrmWait? WaitParams { get; set; } public FrostFsSessionToken? SessionToken { get; set; } }