diff --git a/Octokit/Models/Response/Committer.cs b/Octokit/Models/Response/Committer.cs
deleted file mode 100644
index da46505f..00000000
--- a/Octokit/Models/Response/Committer.cs
+++ /dev/null
@@ -1,61 +0,0 @@
-using System;
-using System.Diagnostics;
-using System.Globalization;
-
-namespace Octokit
-{
- ///
- /// Represents the author or committer to a Git commit. This is the information stored in Git and should not be
- /// confused with GitHub account information.
- ///
- [DebuggerDisplay("{DebuggerDisplay,nq}")]
- public class Committer
- {
- ///
- /// Initializes a new instance of the class.
- ///
- public Committer() { }
-
- ///
- /// Initializes a new instance of the class.
- ///
- /// The full name of the author or committer.
- /// The email.
- /// The date.
- public Committer(string name, string email, DateTimeOffset date)
- {
- Name = name;
- Email = email;
- Date = date;
- }
-
- ///
- /// Gets the name of the author or committer.
- ///
- ///
- /// The name.
- ///
- public string Name { get; protected set; }
-
- ///
- /// Gets the email of the author or committer.
- ///
- ///
- /// The email.
- ///
- public string Email { get; protected set; }
-
- ///
- /// Gets the date of the author or contributor's contributions.
- ///
- ///
- /// The date.
- ///
- public DateTimeOffset Date { get; protected set; }
-
- internal string DebuggerDisplay
- {
- get { return String.Format(CultureInfo.InvariantCulture, "Name: {0} Email: {1} Date: {2}", Name, Email, Date); }
- }
- }
-}