Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Discounts;
/// 
/// Represents a discount usage history model
///  
public partial record DiscountUsageHistoryModel : BaseNopEntityModel
{
    #region Properties
    public int DiscountId { get; set; }
    public int OrderId { get; set; }
    [NopResourceDisplayName("Admin.Promotions.Discounts.History.CustomOrderNumber")]
    public string CustomOrderNumber { get; set; }
    [NopResourceDisplayName("Admin.Promotions.Discounts.History.OrderTotal")]
    public string OrderTotal { get; set; }
    [NopResourceDisplayName("Admin.Promotions.Discounts.History.CreatedOn")]
    public DateTime CreatedOn { get; set; }
    #endregion
}