mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 04:55:33 +00:00
9 lines
337 B
C#
9 lines
337 B
C#
|
namespace NftFaucetRadzen.Components.CardList;
|
||
|
|
||
|
public class CardListItemConfiguration
|
||
|
{
|
||
|
public CardListItemConfigurationObject[] Objects { get; set; }
|
||
|
public Func<CardListItemConfigurationObject[], Task<bool>> ValidationFunc { get; set; }
|
||
|
public Func<CardListItemConfigurationObject[], Task> ConfigureAction { get; set; }
|
||
|
}
|