mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
9 lines
214 B
C#
9 lines
214 B
C#
namespace NftFaucetRadzen.Models;
|
|
|
|
public class StateStorage
|
|
{
|
|
public Guid[] SelectedNetworks { get; set; }
|
|
public Guid[] SelectedProviders { get; set; }
|
|
public EthereumKey GeneratedKey { get; set; }
|
|
}
|