23 lines
384 B
C#
23 lines
384 B
C#
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
|
|
}
|