mirror of
https://github.com/eliasstepanik/AutoProxy.git
synced 2026-01-10 05:08:33 +00:00
8 lines
165 B
C#
8 lines
165 B
C#
namespace DDNSUpdater.Interfaces;
|
|
|
|
public interface IDDNSService
|
|
{
|
|
public Task Init();
|
|
public Task Update(bool changed);
|
|
public Task SetUpdateURL();
|
|
} |