Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

VatNumberStatus.cs

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
}