11 lines
300 B
C#
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; } = "";
|
|
} |