Made parameters public for Preview8
This commit is contained in:
@ -12,16 +12,16 @@
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
private string Action { get; set; }
|
||||
public string Action { get; set; }
|
||||
|
||||
[Parameter]
|
||||
private string Text { get; set; } // optional
|
||||
public string Text { get; set; } // optional
|
||||
|
||||
[Parameter]
|
||||
private string Parameters { get; set; } // optional
|
||||
public string Parameters { get; set; } // optional
|
||||
|
||||
[Parameter]
|
||||
private string ButtonClass { get; set; } // optional
|
||||
public string ButtonClass { get; set; } // optional
|
||||
|
||||
string text = "";
|
||||
string url = "";
|
||||
|
Reference in New Issue
Block a user