nft-faucet/NftFaucetRadzen/Plugins/ConfigurationItem.cs
2022-09-04 09:37:49 -05:00

11 lines
277 B
C#

namespace NftFaucetRadzen.Plugins;
public class ConfigurationItem
{
public string Name { get; set; }
public string Tooltip { get; set; }
public string Placeholder { get; set; }
public string Value { get; set; }
public bool IsMaskedWithDots { get; set; }
}