Try your search with a different keyword or use * as a wildcard.
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; }
}