All checks were successful
Caddy Manager CI build / docker (push) Successful in 1m16s
12 lines
371 B
C#
12 lines
371 B
C#
namespace CaddyManager.Contracts.Models.Caddy;
|
|
|
|
/// <summary>
|
|
/// Class to wrap the response of a Caddy delete operation
|
|
/// </summary>
|
|
public class CaddyDeleteOperationResponse : CaddyOperationResponse
|
|
{
|
|
/// <summary>
|
|
/// List of configurations that were successfully deleted
|
|
/// </summary>
|
|
public List<string> DeletedConfigurations { get; set; } = [];
|
|
} |