Files
DP44/Common/DTS.Common/.svn/pristine/81/81101b3aeb37f610a8e703526d7873722780883c.svn-base

17 lines
415 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using System.Windows;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IViewerShellViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Shell View.
/// </summary>
IViewerShellView View { get; }
List<FrameworkElement> GetRegions();
object ContextMainRegion { get; set; }
}
}