using System; using System.Runtime.InteropServices; namespace LibGit2Sharp.Core { /// /// Managed structure corresponding to git_transfer_progress native structure. /// [StructLayout(LayoutKind.Sequential)] internal struct GitTransferProgress { public uint total_objects; public uint indexed_objects; public uint received_objects; public uint local_objects; public uint total_deltas; public uint indexed_deltas; public UIntPtr received_bytes; } }