Files
DP44/Common/DTS.CommonCore/.svn/pristine/15/15f0247e77fc11666fcf611537fc670f0a44e5ca.svn-base
2026-04-17 14:55:32 -04:00

13 lines
250 B
Plaintext

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