mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 04:28:29 +00:00
10 lines
181 B
C#
10 lines
181 B
C#
using NftFaucet.Models.Enums;
|
|
|
|
namespace NftFaucet.Options;
|
|
|
|
public class IpfsGatewayOptions
|
|
{
|
|
public IpfsGatewayType Id { get; set; }
|
|
public string BaseUrl { get; set; }
|
|
}
|