12 lines
198 B
C#
12 lines
198 B
C#
|
|
using Microsoft.UI.Xaml.Controls;
|
||
|
|
|
||
|
|
namespace TeamsISO.App.WinUI.Views;
|
||
|
|
|
||
|
|
public sealed partial class HelpDialog : ContentDialog
|
||
|
|
{
|
||
|
|
public HelpDialog()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|