nft-faucet/NftFaucetRadzen/Components/CardList/CardListItemConfigurationObject.cs

16 lines
426 B
C#
Raw Normal View History

2022-09-15 23:11:04 -05:00
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; }
}