using CommunityToolkit.Mvvm.ComponentModel;
using XFEExtension.NetCore.WinUIHelper.Interface.Services;
using XFEExtension.NetCore.WinUIHelper.Utilities;
namespace XFEExtension.NetCore.WinUIHelper.Implements;
///
/// 自动导航视图模型基类
///
///
public abstract partial class AutoNavigatableViewModelBase : ObservableObject
{
///
/// 自动导航参数服务
///
public IAutoNavigationParameterService AutoNavigationParameterService { get; } = ServiceManager.GetService>();
}