11 lines
296 B
C#
11 lines
296 B
C#
namespace Core.Settings;
|
|
|
|
/// <summary>
|
|
/// This class gathers publish-related configurations
|
|
/// </summary>
|
|
public class PublishConfig
|
|
{
|
|
public string NpmRegistry { init; get; } = "";
|
|
public string NugetRegistry { init; get; } = "";
|
|
public string MavenRegistry { init; get; } = "";
|
|
} |