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:
authorAndrius Bentkus <andrius.bentkus@gmail.com>2011-03-06 19:13:57 +0300
committerAndrius Bentkus <andrius.bentkus@gmail.com>2011-03-06 19:13:57 +0300
commitf6721c3302ca9d8fe2a93952b4e86be1189061c6 (patch)
treec2a43b7d5968a9b7f1a230f414c2e521c4e1ad93 /LibGit2Sharp/Blob.cs
parent0ab8107402a466c8be1cdae660af3f36a1a01253 (diff)
Rename namespace from libgit2 to LibGit2Sharp.
Diffstat (limited to 'LibGit2Sharp/Blob.cs')
-rw-r--r--LibGit2Sharp/Blob.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs
new file mode 100644
index 00000000..c1fea5f8
--- /dev/null
+++ b/LibGit2Sharp/Blob.cs
@@ -0,0 +1,10 @@
+namespace LibGit2Sharp
+{
+ public class Blob : GitObject
+ {
+ public Blob(string objectId)
+ : base(objectId, ObjectType.Blob)
+ {
+ }
+ }
+}