Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
11 lines
404 B
C#
11 lines
404 B
C#
namespace FrostFS.SDK.Client;
|
|
|
|
public sealed class PrmObjectDelete(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; }
|
|
}
|