Files
DP44/Common/DTS.Common/.svn/pristine/0b/0b7e01f123fa190b3ac32bdc29357ca0e040be32.svn-base

15 lines
423 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Windows.Controls;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface IMainLiteView : IBaseView
{
StackPanel MainShell { get; set; }
ContentControl MainRegion { get; set; }
ContentControl NavigationRegion { get; set; }
ContentControl HorizontalTabRegion { get; set; }
ContentControl VerticalTabRegion { get; set; }
}
}