Plugin class name can now have any name.

This commit is contained in:
Stone-Red-Code
2021-08-16 18:19:42 +02:00
parent 1e57ec1b6a
commit d46976fec8
92 changed files with 109 additions and 76 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
private string _value;
/// <summary>
/// Gets or sets the text associated with this control.
/// Gets or sets the text associated with this <see cref="TextBox"/>.
/// </summary>
public string Value
{
@@ -26,7 +26,7 @@
/// <summary>
/// Initializes a new instance of the <see cref="TextBox"/> class with the provided <paramref name="value"/>.
/// </summary>
/// <param name="value"></param>
/// <param name="value">The text associated with this control.</param>
public TextBox(string value)
{
Value = value;