Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Tax;
///
/// Represents the VAT number status enumeration
///
public enum VatNumberStatus
{
///
/// Unknown
///
Unknown = 0,
///
/// Empty
///
Empty = 10,
///
/// Valid
///
Valid = 20,
///
/// Invalid
///
Invalid = 30
}