nft-faucet/NftFaucet/Options/EthereumNetworkOptions.cs
2022-04-03 21:23:01 +02:00

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; }
}