namespace BlazorWASM.Shared { public class SliderItem { public string Title { get; set; } public string Description { get; set; } public string Url { get; set; } public SliderItem(string title, string description, string url) { Title = title; Description = description; Url = url; } } }