16 lines
401 B
C#
16 lines
401 B
C#
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; }
|
|
}
|
|
}
|