mirror of
https://github.com/DarthAffe/Arge.git
synced 2022-11-28 19:26:16 +00:00
16 lines
382 B
C#
16 lines
382 B
C#
using Arge.ViewModels;
|
|
|
|
namespace Arge.Views
|
|
{
|
|
public class SettingsLayoutViewBase : AbstractView<SettingsLayoutViewModel> { }
|
|
|
|
public partial class SettingsLayoutView : SettingsLayoutViewBase
|
|
{
|
|
public SettingsLayoutView(SettingsLayoutViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
this.ViewModel = viewModel;
|
|
}
|
|
}
|
|
}
|