create layout
This commit is contained in:
20
Apollon.WPF/ViewModels/LayoutViewModel.cs
Normal file
20
Apollon.WPF/ViewModels/LayoutViewModel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Apollon.WPF.ViewModels
|
||||
{
|
||||
public class LayoutViewModel : ViewModelBase
|
||||
{
|
||||
public LayoutViewModel(NavBarPreparationViewModel navBarPreparationViewModel, ViewModelBase contentVieModel)
|
||||
{
|
||||
NavBarPreparationViewModel = navBarPreparationViewModel;
|
||||
ContentVieModel = contentVieModel;
|
||||
}
|
||||
|
||||
public NavBarPreparationViewModel NavBarPreparationViewModel { get;}
|
||||
public ViewModelBase ContentVieModel { get;}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user