13 lines
322 B
Plaintext
13 lines
322 B
Plaintext
|
|
using System.Collections.Generic;
|
||
|
|
using DTS.Common.Base;
|
||
|
|
|
||
|
|
namespace DTS.Common.Interface
|
||
|
|
{
|
||
|
|
public interface IAssemblyListViewModel : IBaseViewModel
|
||
|
|
{
|
||
|
|
IMainViewModel Parent { get; set; }
|
||
|
|
IAssemblyListView View { get; set; }
|
||
|
|
List<IAssemblyView> GroupList { get; set; }
|
||
|
|
}
|
||
|
|
}
|