14 lines
263 B
C#
14 lines
263 B
C#
using Avalonia.Controls;
|
|
using PropertyChanged;
|
|
|
|
namespace Saradomin.View.Controls
|
|
{
|
|
[DoNotNotify]
|
|
public partial class PluginManagerView : UserControl
|
|
{
|
|
public PluginManagerView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |