Webiant Logo Webiant Logo
  1. No results found.

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

AddProductToSyncModel.cs

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
}