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 slide model on the site
///
public record PublicSlideModel : BaseNopModel
{
#region Properties
public int PictureId { get; set; }
public string PictureUrl { get; set; }
public string TitleText { get; set; }
public string LinkUrl { get; set; }
public string AltText { get; set; }
public bool LazyLoading { get; set; }
#endregion
}