namespace CaddyManager.Contracts.Models.Caddy;
///
/// Class to wrap the response of a Caddy delete operation
///
public class CaddyDeleteOperationResponse : CaddyOperationResponse
{
///
/// List of configurations that were successfully deleted
///
public List DeletedConfigurations { get; set; } = [];
}