namespace Core.Dto.Settings; /// /// This class gathers publish-related configurations /// public class PublishConfigDto { public string NpmRegistry { get; set; } = ""; public string NugetRegistry { get; set; } = ""; public string MavenRegistry { get; set; } = ""; }