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