13 lines
248 B
C#
13 lines
248 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface IMenuViewModel : IBaseViewModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the Menu View.
|
|||
|
|
/// </summary>
|
|||
|
|
IMenuView View { get; }
|
|||
|
|
}
|
|||
|
|
}
|