mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
14 lines
248 B
C#
14 lines
248 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Capnp
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Helper struct to represent the tuple (segment index, offset)
|
|||
|
/// </summary>
|
|||
|
public struct SegmentSlice
|
|||
|
{
|
|||
|
public uint SegmentIndex;
|
|||
|
public int Offset;
|
|||
|
}
|
|||
|
}
|