Skip to content

Commit

Permalink
Merge pull request #55 from TheColonel2688/master
Browse files Browse the repository at this point in the history
…Changed Accessibility Level for ShortName and LongName
  • Loading branch information
Nick-Lucas authored Jul 22, 2019
2 parents 7749224 + 3db363a commit a33bfc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EntryPoint/Arguments/BaseOptionAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ internal BaseOptionAttribute(IOptionStrategy optionStrategy) {
/// <summary>
/// The case sensitive character which can be declared after a - to trigger an option
/// </summary>
internal char ShortName { get; set; }
public char ShortName { get; internal set; }

/// <summary>
/// The case insensitive string which can be declared after a -- to trigger an option
/// </summary>
internal string LongName { get; set; }
public string LongName { get; internal set; }
}

}

0 comments on commit a33bfc2

Please sign in to comment.