Skip to content

Commit

Permalink
change Attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
rcktrncn committed Aug 3, 2021
1 parent 28f560c commit a281e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taskt/Core/Automation/Attributes/Attributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ public PropertySecondaryLabel(bool opt)
}
}
[System.AttributeUsage(AttributeTargets.Property, AllowMultiple = true)]
public sealed class PropertyDataGridViewRowInfo : System.Attribute
public sealed class PropertyAddtionalParameterInfo : System.Attribute
{
public string searchKey = "";
public string description = "";
public string sampleUsage = "";
public string remarks = "";
public PropertyDataGridViewRowInfo(string searchKey, string description, string sampleUsage = "", string remarks = "")
public PropertyAddtionalParameterInfo(string searchKey, string description, string sampleUsage = "", string remarks = "")
{
this.searchKey = searchKey;
this.description = description;
Expand Down

0 comments on commit a281e2b

Please sign in to comment.