Files
api-generator/Core/Dto/Settings/PublishConfigDto.cs
2025-10-11 13:08:09 +02:00

11 lines
300 B
C#

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