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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal struct GitSubmoduleOptions
    {
        public uint Version;

        public GitCheckoutOpts CheckoutOptions;

        public GitRemoteCallbacks RemoteCallbacks;

        public CheckoutStrategy CloneCheckoutStrategy;
    }
}