1fc7792cd1
Rename ConfigManager to ConfigManager.Ui to match the Core/CLI/UI project structure, and split the monolithic test project into Core.Tests, Cli.Tests, and Ui.Tests to align with the source project organization.
15 lines
365 B
C#
15 lines
365 B
C#
using Avalonia.Controls;
|
|
|
|
namespace JdeScoping.ConfigManager.Ui.Views.Forms;
|
|
|
|
public partial class ConnectionStringsFormView : UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ConnectionStringsFormView"/> class.
|
|
/// </summary>
|
|
public ConnectionStringsFormView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|