using System.Collections.Specialized; using FrostFS.SDK.ModelsV2; namespace FrostFS.SDK.ClientV2.Parameters; public sealed class PrmContainerDelete(ContainerId containerId, Context? ctx = null) : IContext { public ContainerId 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; } /// /// FrostFS request X-Headers /// public NameValueCollection XHeaders { get; set; } = []; /// public Context? Context { get; set; } = ctx; }