nft-faucet/NftFaucetRadzen/Plugins/ConfigurationItem.cs

11 lines
277 B
C#
Raw Normal View History

2022-08-28 21:17:40 -05:00
namespace NftFaucetRadzen.Plugins;
public class ConfigurationItem
{
public string Name { get; set; }
public string Tooltip { get; set; }
2022-08-31 12:13:30 -05:00
public string Placeholder { get; set; }
2022-08-28 21:17:40 -05:00
public string Value { get; set; }
2022-09-04 09:37:49 -05:00
public bool IsMaskedWithDots { get; set; }
2022-08-28 21:17:40 -05:00
}