Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Misc.RFQ.Domains;
///
/// Represents an quote status
///
public enum QuoteStatus
{
///
/// Created from customer request a quote
///
CreatedFromRequestQuote = 1,
///
/// Created manually by store owner
///
CreatedManuallyByStoreOwner,
///
/// Sent to customer
///
Submitted,
///
/// Order is created
///
OrderCreated,
///
/// Expired
///
Expired
}