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));
    }
}