Files
aistudio-wpf-diagram/Others/Dragablz/Dragablz/IManualInterTabClient.cs
2023-04-16 20:11:40 +08:00

8 lines
163 B
C#

namespace Dragablz
{
public interface IManualInterTabClient : IInterTabClient
{
void Add(object item);
void Remove(object item);
}
}