Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Widgets.AccessiBe.Domain;
/// <summary>
/// Represents an enumeration of button vertical positions
/// </summary>
public enum TriggerVerticalPosition
{
/// <summary>
/// Align bottom
/// </summary>
Bottom,
/// <summary>
/// Align center
/// </summary>
Center,
/// <summary>
/// Align top
/// </summary>
Top
}