Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Widgets.Swiper.Domain;
///
/// Represents a slider item in the settings
///
public class Slide
{
#region Properties
///
/// Picture identifier
///
public int PictureId { get; set; }
///
/// Title attribute for image
///
public string TitleText { get; set; }
///
/// Link URL
///
public string LinkUrl { get; set; }
///
/// Image alternate text
///
public string AltText { get; set; }
#endregion
}