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

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

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitSignature
    {
        public IntPtr Name;
        public IntPtr Email;
        public GitTime When;
    }
}