MangoWeb/BlazorWASM/Shared/ServicesCard.cs

28 lines
489 B
C#

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<ServicesCardItem> Cards { get; set; }
public ServicesCard(string title, string discription, List<ServicesCardItem> cards)
{
Title = title;
Discription = discription;
Cards = cards;
}
}
}