16 lines
266 B
C#
16 lines
266 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Data;
|
|
using PropertyChanged;
|
|
|
|
namespace Builder;
|
|
|
|
[DoNotNotify]
|
|
public partial class ExistingProjectConfigurationView : UserControl
|
|
{
|
|
public ExistingProjectConfigurationView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
}
|