Files
NebulaLauncher/Nebula.Launcher/Views/Pages/AccountInfoView.axaml.cs
2025-01-14 22:10:16 +03:00

20 lines
422 B
C#

using Avalonia.Controls;
using AccountInfoViewModel = Nebula.Launcher.ViewModels.Pages.AccountInfoViewModel;
namespace Nebula.Launcher.Views.Pages;
public interface ITab;
public partial class AccountInfoView : UserControl
{
public AccountInfoView()
{
InitializeComponent();
}
public AccountInfoView(AccountInfoViewModel viewModel)
: this()
{
DataContext = viewModel;
}
}