mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
11 lines
254 B
C#
11 lines
254 B
C#
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Options;
|
|
|
|
public class EthereumNetworkOptions
|
|
{
|
|
public EthereumNetwork Id { get; set; }
|
|
public string Erc721ContractAddress { get; set; }
|
|
public string Erc1155ContractAddress { get; set; }
|
|
}
|