16 lines
385 B
C#
16 lines
385 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Reflection;
|
|
using DataPro.Common.Base;
|
|
|
|
namespace DataPro.Common.Interface
|
|
{
|
|
public interface IGroupViewModel : IBaseViewModel
|
|
{
|
|
IGroupView View { get; set; }
|
|
|
|
string GroupName { get; set; }
|
|
List<AssemblyNameImage> AssemblyList { get; set; }
|
|
}
|
|
}
|