Organize classes better

Closes #94
This commit is contained in:
Haacked
2013-10-26 09:52:56 -07:00
parent 85145def8c
commit 61c4cdf002
64 changed files with 115 additions and 113 deletions
+21
View File
@@ -0,0 +1,21 @@
using System.Diagnostics.CodeAnalysis;
namespace Octokit
{
public class ReleaseUpdate
{
public ReleaseUpdate(string tagName)
{
Ensure.ArgumentNotNullOrEmptyString(tagName, "tagName");
TagName = tagName;
}
public string TagName { get; private set; }
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Commitish")]
public string TargetCommitish { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Draft { get; set; }
public bool Prerelease { get; set; }
}
}