Files
DP44/Common/DTS.CommonCore/.svn/pristine/2f/2f84184f0ac4595ff013f316e3fcc271ef951be3.svn-base
2026-04-17 14:55:32 -04:00

20 lines
579 B
Plaintext

using System.Collections.Generic;
using System.Windows;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IMainLiteViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Main View.
/// </summary>
IMainView View { get; }
object ContextMainRegion { get; set; }
object ContextNavigationRegion { get; set; }
object ContextHorizontalTabRegion { get; set; }
object ContextVerticalTabRegion { get; set; }
List<FrameworkElement> GetRegions();
}
}