Files
DP44/Common/DTS.CommonCore/.svn/pristine/a6/a6bdbc67ed6ac60bdcb1f7f5845191720026ac75.svn-base

13 lines
251 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Base;
namespace DTS.Common.Interface
{
public interface ILegendViewModel : IBaseViewModel
{
/// <summary>
/// Gets the Tab View.
/// </summary>
ILegendView View { get; }
}
}