13 lines
265 B
C#
13 lines
265 B
C#
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IGraphPropertyViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tab View.
|
|
/// </summary>
|
|
IGraphPropertyView View { get; }
|
|
}
|
|
}
|