using FrostFS.SDK.ModelsV2;
using System.Security.Cryptography;
namespace FrostFS.SDK.ClientV2.Parameters;
public sealed class PrmContainerCreate(ModelsV2.Container container) : PrmBase, ISessionToken
{
public ModelsV2.Container 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 SessionToken? SessionToken { get; set; }
}