elias e5e1dff331 Added Structure to Code.
Added automatic request of the UpdateURL.
2023-01-31 20:10:12 +01:00

8 lines
154 B
C#

namespace DDNSUpdater.Interfaces;
public interface IDDNSService
{
public void Start();
public void Update();
public void SetUpdateURL();
}