Files
DP44/Common/DTS.CommonCore/.svn/pristine/89/8936549af7b3a54f870b2aff56478d64a452c4a3.svn-base
2026-04-17 14:55:32 -04:00

16 lines
401 B
Plaintext

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Reflection;
using DataPro.Common.Base;
namespace DataPro.Common.Interface
{
public interface IGroupListViewModel : IBaseViewModel
{
IMainViewModel Parent { get; set; }
IGroupListView View { get; set; }
List<IGroupView> GroupList { get; set; }
}
}