Webiant Logo Webiant Logo
  1. No results found.

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

TaxCategory.cs

namespace Nop.Core.Domain.Tax;

/// 
/// Represents a tax category
/// 
public partial class TaxCategory : BaseEntity
{
    /// 
    /// Gets or sets the name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }
}