Public Access
10 lines
301 B
C#
10 lines
301 B
C#
using Avalonia.Controls;
|
|
|
|
namespace DodoSSH.Client.App.Views;
|
|
|
|
/// <summary>Settings mode's Account page: the read-only profile, the sign-in fact, and signing out.</summary>
|
|
internal sealed partial class SettingsAccountPage : UserControl
|
|
{
|
|
public SettingsAccountPage() => InitializeComponent();
|
|
}
|