mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 21:15:30 +00:00
12 lines
331 B
C#
12 lines
331 B
C#
namespace NftFaucetRadzen.Models;
|
|
|
|
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; }
|
|
public CardListItemBadge[] Badges { get; set; }
|
|
}
|