nft-faucet/NftFaucetRadzen/Models/CardListItemButton.cs

11 lines
205 B
C#
Raw Normal View History

2022-08-27 15:18:43 -05:00
using Radzen;
namespace NftFaucetRadzen.Models;
public class CardListItemButton
{
public string Name { get; set; }
public Action Action { get; set; }
public ButtonStyle Style { get; set; }
}