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 = ""; | ||||
|  | ||||
| @ -10,10 +10,10 @@ | ||||
|  | ||||
| @code { | ||||
|     [Parameter] | ||||
|     private MessageType Type { get; set; } | ||||
|     public MessageType Type { get; set; } | ||||
|  | ||||
|     [Parameter] | ||||
|     private string Message { get; set; } | ||||
|     public string Message { get; set; } | ||||
|  | ||||
|     string type = "alert alert-success"; // optional | ||||
|     bool authorized = false; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker