using System; namespace Capnp { /// /// Helper struct to represent the tuple (segment index, offset) /// public struct SegmentSlice { public uint SegmentIndex; public int Offset; } }