using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlazorWASM.Shared { public class ServicesCard { public string Title { get; set; } public string Discription { get; set; } public List Cards { get; set; } public ServicesCard(string title, string discription, List cards) { Title = title; Discription = discription; Cards = cards; } } }