29 lines
885 B
C#
Raw Normal View History

2022-08-28 21:17:40 -05:00
using CSharpFunctionalExtensions;
2022-08-28 19:05:50 -05:00
namespace NftFaucetRadzen.Plugins.UploadPlugins.NftStorage.Uploaders;
public class NftStorageUploader : IUploader
{
public Guid Id { get; } = Guid.Parse("ece2123a-cca7-4266-91e7-bc73680cf218");
public string Name { get; } = "nft.storage";
public string ShortName { get; } = "NftStorage";
public string ImageName { get; } = "nft-storage.svg";
public bool IsSupported { get; } = false;
public bool IsInitialized { get; } = false;
2022-08-28 21:17:40 -05:00
public IReadOnlyCollection<ConfigurationItem> GetConfigurationItems()
{
throw new NotImplementedException();
}
public Task<Result> TryInitialize(IReadOnlyCollection<ConfigurationItem> configurationItems)
{
throw new NotImplementedException();
}
2022-08-30 21:09:30 -05:00
public Task<Result<Uri>> Upload(IToken token)
{
throw new NotImplementedException();
}
2022-08-28 19:05:50 -05:00
}