Files
DP44/Common/DTS.CommonCore/.svn/pristine/6b/6b663571eea4eb5f184688b1065b60b0490ffbe9.svn-base

15 lines
402 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using DataPro.Common.Base;
using DataPro.Common.Interface.GroupTemplate;
namespace DataPro.Common.Interface
{
public interface IGroupTemplateInfoControlViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Shell View.
/// </summary>
IGroupTemplateInfoView View { get; }
IGroupTemplateModel SelectedGroupTemplate { get; set; }
}
}