using Nop.Web.Framework.Models; namespace Nop.Web.Areas.Admin.Models.Customers; /// /// Represents a customer activity log search model /// public partial record CustomerActivityLogSearchModel : BaseSearchModel { #region Properties public int CustomerId { get; set; } #endregion }