11 lines
192 B
C#
11 lines
192 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Hyperbar.Windows;
|
|
|
|
public sealed partial class WidgetView :
|
|
UserControl,
|
|
IWidgetView
|
|
{
|
|
public WidgetView() => InitializeComponent();
|
|
}
|