11 lines
218 B
C#
Raw Normal View History

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