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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Core/GitNoteData.cs')
-rw-r--r--LibGit2Sharp/Core/GitNoteData.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/LibGit2Sharp/Core/GitNoteData.cs b/LibGit2Sharp/Core/GitNoteData.cs
new file mode 100644
index 00000000..6592ab8c
--- /dev/null
+++ b/LibGit2Sharp/Core/GitNoteData.cs
@@ -0,0 +1,11 @@
+using System.Runtime.InteropServices;
+
+namespace LibGit2Sharp.Core
+{
+ [StructLayout(LayoutKind.Sequential)]
+ internal class GitNoteData
+ {
+ public GitOid BlobOid;
+ public GitOid TargetOid;
+ }
+}