15 lines
402 B
C#
15 lines
402 B
C#
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; }
|
|
}
|
|
}
|