using System.Collections.Generic; using FrostFS.SDK.ModelsV2.Enums; namespace FrostFS.SDK.ModelsV2; public class ObjectHeader { public OwnerId? OwnerId { get; set; } public List Attributes { get; set; } public ContainerId ContainerId { get; set; } public ulong PayloadLength { get; set; } public byte[]? PayloadCheckSum { get; set; } public ObjectType ObjectType { get; set; } public Version? Version { get; set; } public Split? Split { get; set; } public ObjectHeader( ContainerId containerId, ObjectType type = ObjectType.Regular, params ObjectAttribute[] attributes ) { Attributes = [.. attributes]; ContainerId = containerId; ObjectType = type; } }