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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitIndexTime
    {
        public long seconds;
        public uint nanoseconds;
    }
}