35 lines
777 B
C#
35 lines
777 B
C#
using System.Collections.Generic;
|
|
|
|
using FrostFS.SDK.ModelsV2.Enums;
|
|
|
|
namespace FrostFS.SDK.ModelsV2;
|
|
|
|
public class ObjectHeader
|
|
{
|
|
public OwnerId? OwnerId { get; set; }
|
|
|
|
public List<ObjectAttribute> 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;
|
|
}
|
|
}
|