Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a recurring product cycle period
///
public enum RecurringProductCyclePeriod
{
///
/// Days
///
Days = 0,
///
/// Weeks
///
Weeks = 10,
///
/// Months
///
Months = 20,
///
/// Years
///
Years = 30,
}