Files
DP44/Common/DTS.CommonCore/Interface/Components/IAssemblyViewModel.cs
2026-04-17 14:55:32 -04:00

14 lines
318 B
C#

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; }
}
}