namespace Core.Dto.Settings; /// /// This class gathers environment-related configuration /// public class EnvironmentConfigDto { public string Invite { get; set; } = ""; public string LocalRoot { get; set; } = ""; public string DockerRoot { get; set; } = ""; }