using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlazorWASM.Shared { public class DescriptionContent { public string ContentParagraph { get; set; } public DescriptionContent(string contentParagraph) { ContentParagraph = contentParagraph; } } }