Renamed Call Start and Stop to Enable and Disable

This commit is contained in:
2025-08-31 02:51:49 +02:00
parent 2187a59936
commit 92bf48d06a
4 changed files with 16 additions and 16 deletions

View File

@@ -16,8 +16,8 @@ public class CallConfig
public interface ICall
{
public HealthCheckResult HealthCheck();
public void Start();
public void Stop();
public void Enable();
public void Disable();
public void Dispose();
public string Name { get; set; }
public bool IsEnabled { get; set; }