namespace CaddyManager.Contracts.Docker; /// /// Result of a graceful Caddy configuration reload /// public class CaddyReloadResponse { /// /// Indicates whether Caddy accepted and applied the configuration /// public bool Success { get; set; } /// /// Output from Caddy when the reload failed, typically the configuration validation error /// public string Message { get; set; } = string.Empty; }