Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Plugin.Misc.Zettle.Models;
///
/// Represents a product model to add for synchronization
///
public record AddProductToSyncModel : BaseNopModel
{
#region Ctor
public AddProductToSyncModel()
{
SelectedProductIds = new List();
}
#endregion
#region Properties
public IList SelectedProductIds { get; set; }
#endregion
}