mirror of
https://github.com/eliasstepanik/IonosDDNSUpdater.git
synced 2026-01-11 11:38:27 +00:00
9 lines
162 B
C#
9 lines
162 B
C#
namespace DDNSUpdater.Abstracts;
|
|
|
|
public abstract class ADDNSService
|
|
{
|
|
public abstract void Update();
|
|
|
|
// Rest of the class implementation
|
|
// ...
|
|
} |