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/Header.cs')
-rw-r--r--LibGit2Sharp/Header.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/LibGit2Sharp/Header.cs b/LibGit2Sharp/Header.cs
new file mode 100644
index 00000000..acb181ee
--- /dev/null
+++ b/LibGit2Sharp/Header.cs
@@ -0,0 +1,16 @@
+namespace LibGit2Sharp
+{
+ public class Header
+ {
+ public Header(string id, ObjectType type, ulong length)
+ {
+ Id = id;
+ Type = type;
+ Length = length;
+ }
+
+ public string Id { get; private set; }
+ public ObjectType Type { get; private set; }
+ public ulong Length { get; private set; }
+ }
+} \ No newline at end of file