Webiant Logo Webiant Logo
  1. No results found.

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

CustomerRewardPointsModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Areas.Admin.Models.Customers;

/// 
/// Represents a reward point model
/// 
public partial record CustomerRewardPointsModel : BaseNopEntityModel
{
    #region Properties

    public string StoreName { get; set; }

    public int Points { get; set; }

    public string PointsBalance { get; set; }

    public string Message { get; set; }

    public DateTime CreatedOn { get; set; }

    public DateTime? EndDate { get; set; }

    #endregion
}