28 lines
682 B
C#
28 lines
682 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BlazorWASM.Shared
|
|
{
|
|
public class ServicesCardItem
|
|
|
|
{
|
|
public string IconPath { get; set; }
|
|
public string CardTitle { get; set; }
|
|
|
|
public List<string> CardDiscription { get; set; }
|
|
|
|
public string ButtonUrl { get; set; }
|
|
|
|
public ServicesCardItem(string iconPath, string cardTitle, List<string> cardDiscription, string buttonUrl)
|
|
{
|
|
IconPath = iconPath;
|
|
CardTitle = cardTitle;
|
|
CardDiscription = cardDiscription;
|
|
ButtonUrl = buttonUrl;
|
|
}
|
|
}
|
|
}
|