using Nop.Web.Framework.Models; namespace Nop.Plugin.Widgets.Swiper.Models; /// /// Represents a slider model on the site /// public record PublicInfoModel : BaseNopModel { #region Properties public bool ShowNavigation { get; set; } public bool ShowPagination { get; set; } public bool Autoplay { get; set; } public int AutoplayDelay { get; set; } public List Slides { get; set; } = new(); #endregion }