13 lines
317 B
C#
13 lines
317 B
C#
namespace Common.UI.VFM.ViewModels
|
|
{
|
|
public class MainWindowViewModel : AppViewModel
|
|
{
|
|
private AppViewModel content;
|
|
public AppViewModel Content
|
|
{
|
|
get => this.content ?? new ShipmnetViewModel();
|
|
set => this.Set(() => this.content = value);
|
|
}
|
|
}
|
|
}
|