Try your search with a different keyword or use * as a wildcard.
using System.Runtime.Serialization;
namespace Nop.Plugin.Widgets.AccessiBe.Domain;
///
/// Represents an enumeration of button shapes
///
public enum TriggerButtonShape
{
///
/// Circle (square with corner radius 50%)
///
[EnumMember(Value = "50%")]
Round,
///
/// Square without corner radius
///
[EnumMember(Value = "0")]
Square,
///
/// Square with corner radius 10px
///
[EnumMember(Value = "10px")]
SquircleBig,
///
/// Square with corner radius 5px
///
[EnumMember(Value = "5px")]
SquircleSmall
}