Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GitPushOptions.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4bbcdc3fd365bd3404b6ded3b94253eb66a936c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitPushOptions
    {
        public int Version = 1;
        public int PackbuilderDegreeOfParallelism;
        public GitRemoteCallbacks RemoteCallbacks;
    }
}