using System.Collections.Generic; using DTS.Common.Base; namespace DTS.Common.Interface { public interface IAssemblyViewModel : IBaseViewModel { IAssemblyView View { get; set; } string GroupName { get; set; } List AssemblyList { get; set; } } }