26 lines
619 B
C#
26 lines
619 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.Addin.MainWindow.External.Browser
|
|||
|
|
{
|
|||
|
|
internal class BrowserConfiguration
|
|||
|
|
{
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
|
|||
|
|
public string CachePath { get; set; }
|
|||
|
|
|
|||
|
|
public IntPtr MessageHandle { get; set; } = IntPtr.Zero;
|
|||
|
|
|
|||
|
|
public int ParentProcessId { get; set; } = -1;
|
|||
|
|
|
|||
|
|
public string Url { get; set; }
|
|||
|
|
|
|||
|
|
public string Net2JsObjectName { get; set; }
|
|||
|
|
|
|||
|
|
public string Net2JsUpdateStatePartialFunctionName { get; set; }
|
|||
|
|
|
|||
|
|
public string Js2NetObjectName { get; set; }
|
|||
|
|
|
|||
|
|
public string RevitVersion { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|