Try your search with a different keyword or use * as a wildcard.
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
}