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 }