Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Discounts;
///
/// Represents a discount category model
///
public partial record DiscountCategoryModel : BaseNopEntityModel
{
#region Properties
public int CategoryId { get; set; }
public string CategoryName { get; set; }
#endregion
}