12 lines
188 B
C#
12 lines
188 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace OTSSignsOrchestrator.Desktop.Views;
|
||
|
|
|
||
|
|
public partial class HostsView : UserControl
|
||
|
|
{
|
||
|
|
public HostsView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|