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