Files
DP44/Common/DTS.Common/Interface/Viewer/TestModule/ITestModuleViewModel.cs

12 lines
253 B
C#
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using System.Reflection;
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ITestModuleViewModel : IBaseViewModel
{
List<Assembly> AssemblyList { get; set; }
}
}