Files
DP44/Common/DTS.Common/.svn/pristine/1b/1b7647fe744b12fe4350de042c4cc332ba542de5.svn-base
2026-04-17 14:55:32 -04:00

13 lines
271 B
Plaintext

using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface INavigationViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Shell View.
/// </summary>
INavigationView NavigationView { get; }
}
}