mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 04:55:33 +00:00
11 lines
205 B
C#
11 lines
205 B
C#
|
using Radzen;
|
||
|
|
||
|
namespace NftFaucetRadzen.Models;
|
||
|
|
||
|
public class CardListItemButton
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public Action Action { get; set; }
|
||
|
public ButtonStyle Style { get; set; }
|
||
|
}
|