Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
21 lines
No EOL
563 B
C#
21 lines
No EOL
563 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace FrostFS.SDK;
|
|
|
|
public class FrostFsLinkObject : FrostFsObject
|
|
{
|
|
public FrostFsLinkObject(FrostFsContainerId containerId,
|
|
SplitId splitId,
|
|
FrostFsObjectHeader largeObjectHeader,
|
|
IList<FrostFsObjectId> children)
|
|
: base(containerId)
|
|
{
|
|
Header!.Split = new FrostFsSplit(splitId,
|
|
null,
|
|
null,
|
|
largeObjectHeader,
|
|
null,
|
|
new ReadOnlyCollection<FrostFsObjectId>(children));
|
|
}
|
|
} |