11 lines
221 B
C#
11 lines
221 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FastGithub.Scanner
|
|
{
|
|
interface IDomainAddressProvider
|
|
{
|
|
Task<IEnumerable<DomainAddress>> CreateDomainAddressesAsync();
|
|
}
|
|
}
|