mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
15 lines
541 B
C#
15 lines
541 B
C#
using NftFaucetRadzen.Models;
|
|
|
|
namespace NftFaucetRadzen.Components.CardList;
|
|
|
|
public class CardListItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string ImageName { get; set; }
|
|
public string Header { get; set; }
|
|
public bool IsDisabled { get; set; }
|
|
public CardListItemProperty[] Properties { get; set; } = Array.Empty<CardListItemProperty>();
|
|
public CardListItemBadge[] Badges { get; set; } = Array.Empty<CardListItemBadge>();
|
|
public CardListItemButton[] Buttons { get; set; } = Array.Empty<CardListItemButton>();
|
|
}
|