mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
11 lines
277 B
C#
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; }
|
|
}
|