wabbajack/Wabbajack.Lib/Downloaders/UrlDownloaders/IUrlInferencer.cs

11 lines
204 B
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
namespace Wabbajack.Lib.Downloaders.UrlDownloaders
{
public interface IUrlInferencer
{
2020-04-09 21:12:32 +00:00
Task<AbstractDownloadState?> Infer(Uri uri);
}
}