Files
DP44/Common/DTS.CommonCore/.svn/pristine/50/50824bc621d4ac2ec138a36005f24028daec7212.svn-base

14 lines
318 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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<AssemblyNameImage> AssemblyList { get; set; }
}
}