11 lines
407 B
C#
11 lines
407 B
C#
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public sealed class PrmObjectHeadGet(FrostFsContainerId containerId, FrostFsObjectId objectId, CallContext? ctx = null) : PrmBase(ctx), ISessionToken
|
|
{
|
|
public FrostFsContainerId ContainerId { get; set; } = containerId;
|
|
|
|
public FrostFsObjectId ObjectId { get; set; } = objectId;
|
|
|
|
/// <inheritdoc />
|
|
public FrostFsSessionToken? SessionToken { get; set; }
|
|
}
|