25 lines
518 B
C#
25 lines
518 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Customers;
|
|
|
|
/// <summary>
|
|
/// Represents a reward point model
|
|
/// </summary>
|
|
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
|
|
} |