2022-08-27 18:44:00 -05:00

11 lines
218 B
C#

using Radzen;
namespace NftFaucetRadzen.Components.CardList;
public class CardListItemButton
{
public string Name { get; set; }
public Action Action { get; set; }
public ButtonStyle Style { get; set; }
}