Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Misc.Zettle.Domain;
///
/// Represents an operation type enumeration
///
public enum OperationType
{
///
/// None
///
None,
///
/// Create
///
Create,
///
/// Update
///
Update,
///
/// Delete
///
Delete,
///
/// Image changed
///
ImageChanged
}