Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
The PR adds IsVisible property to the AceData class to implement the #6729 feature request.
Specific Changes
public class AceData
{
// ...
/// <summary>
/// Gets or sets the visibility of the Adaptive Card Extension.
/// </summary>
/// <value>The value is the flag that indicates if the Adaptive Card Extension is visible. Default to true.</value>
[JsonProperty(PropertyName = "isVisible")]
public bool? IsVisible { get; set; }
// ...
}
Fixes #6729
Description
The PR adds
IsVisible
property to the AceData class to implement the #6729 feature request.Specific Changes