namespace FrostFS.SDK.ClientV2;
public sealed class PrmContainerCreate(FrostFsContainerInfo container) : PrmBase, ISessionToken
{
public FrostFsContainerInfo Container { get; set; } = container;
///
/// Since the container becomes available with some delay, it needs to poll the container status
///
/// Rules for polling the result
public PrmWait? WaitParams { get; set; }
///
/// Blank session token
///
public FrostFsSessionToken? SessionToken { get; set; }
}