12 lines
253 B
C#
12 lines
253 B
C#
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ITestModuleViewModel : IBaseViewModel
|
|
{
|
|
List<Assembly> AssemblyList { get; set; }
|
|
}
|
|
}
|