namespace OTSSignsOrchestrator.Core.Models.DTOs; public class DeploymentResultDto { public bool Success { get; set; } public string StackName { get; set; } = string.Empty; public string Message { get; set; } = string.Empty; public string? Output { get; set; } public string? ErrorMessage { get; set; } public int ExitCode { get; set; } public long DurationMs { get; set; } public int ServiceCount { get; set; } }