microsoft / botbuilder-dotnet

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.
https://github.com/Microsoft/botframework
MIT License
864 stars 480 forks source link

feat: Add IsVisible property to AceData #6730

Closed AJIXuMuK closed 5 months ago

AJIXuMuK commented 5 months ago

Fixes #6729

Description

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; }
  // ...
}
tracyboehrer commented 5 months ago

@AJIXuMuK If you update from main, the build issue should be fixed.