mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 13:05:40 +00:00
16 lines
426 B
C#
16 lines
426 B
C#
|
namespace NftFaucetRadzen.Components.CardList;
|
||
|
|
||
|
public class CardListItemConfigurationObject
|
||
|
{
|
||
|
public Guid Id { get; set; }
|
||
|
public CardListItemConfigurationObjectType Type { get; set; }
|
||
|
|
||
|
public string Name { get; set; }
|
||
|
public string Value { get; set; }
|
||
|
public string Icon { get; set; }
|
||
|
public string Placeholder { get; set; }
|
||
|
|
||
|
// for type=Button only
|
||
|
public Action ClickAction { get; set; }
|
||
|
}
|