using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlazorWASM.Shared { public class TitlePlusImageModel { public string Title { get; set; } public List DescriptionContents { get; set; } public string ImageUrl { get; set; } public List? ContentButtons { get; set; } public TitlePlusImageModel(string title, List descriptionContents, string imageUrl, List contentButtons = null) { Title = title; DescriptionContents = descriptionContents; ImageUrl = imageUrl; ContentButtons = contentButtons; } } }