14 lines
178 B
C#
14 lines
178 B
C#
using System;
|
|
|
|
namespace KGdev.BI3D.Revit.Common
|
|
{
|
|
public interface IMainWindow
|
|
{
|
|
void Show();
|
|
|
|
void Close();
|
|
|
|
bool IsVisible { get; }
|
|
}
|
|
}
|