namespace CaddyManager.Contracts.Models.Caddy;
///
/// Wraps the information needed to save a Caddy configuration
///
public class CaddySaveConfigurationRequest
{
///
/// Indicates if the configuration is new
///
public bool IsNew { get; set; }
///
/// Name of the Caddy configuration file
///
public required string FileName { get; init; } = string.Empty;
///
/// Content of the Caddy configuration file
///
public string Content { get; set; } = string.Empty;
}