mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-07-27 08:06:25 +00:00
19 lines
466 B
C#
19 lines
466 B
C#
using Breath_of_the_Wild_Multiplayer.MVVM.Model;
|
|
using Breath_of_the_Wild_Multiplayer.Source_files;
|
|
|
|
namespace Breath_of_the_Wild_Multiplayer.MVVM.ViewModel
|
|
{
|
|
public class ChangeNameModel : ObservableObject
|
|
{
|
|
public RelayCommand AcceptClick { get; set; }
|
|
|
|
public ChangeNameModel()
|
|
{
|
|
AcceptClick = new RelayCommand(o =>
|
|
{
|
|
SharedData.MainView.closeTopView();
|
|
});
|
|
}
|
|
}
|
|
}
|