using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace SitefinityWebApp.Mvc.Models { public class CarouselBannerModel { public string Title { get; set; } public string Header { get; set; } public string Description { get; set; } //public string CTALabel { get; set; } public string CTALink { get; set; } public string ImageUrl { get; set; } public string PortraitImageUrl { get; set; } public string StyleOption { get; set; } public bool IsDark { get; set; } public int Order { get; set; } } public static class CarouselBannerModuleBuilder { public const string Type = "Telerik.Sitefinity.DynamicTypes.Model.CarouselBanners.CarouselBanner"; public const string IndexName = "carouselbanner"; public const string Id = "Id"; public const string Title = "title"; public const string Header = "header"; public const string Description = "description"; public const string Order = "order"; //public const string CTALabel = "ctalabel"; public const string CTALink = "url"; public const string Image = "image"; public const string StyleOption = "styleoption"; public const string PortraitImage = "portraitimage"; } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter