mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 19:26:51 +00:00
Doc Comments added
Add API URLs to comments Doc Comment Observable Releases Client Add API URLs to doc comments Code Analysis fixes
This commit is contained in:
@@ -7,7 +7,23 @@ namespace Octokit
|
||||
{
|
||||
public class ReleaseAssetUpdate
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public ReleaseAssetUpdate(string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
||||
|
||||
Name = name;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The file name of the asset.
|
||||
/// This field is required.
|
||||
/// </summary>
|
||||
public string Name { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// An alternate description of the asset.
|
||||
/// Used in place of the filename.
|
||||
/// </summary>
|
||||
public string Label { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user